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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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)