Fixes race with unlocked setter. (#5532)

This commit is contained in:
M@
2024-04-25 02:18:28 -04:00
committed by GitHub
parent 607927da60
commit 855607c536

View File

@@ -72,7 +72,9 @@ func (r *LockRing) SetSnapshot(servers []pb.ServerAddress) {
return servers[i] < servers[j]
})
r.Lock()
r.lastUpdateTime = time.Now()
r.Unlock()
r.addOneSnapshot(servers)