mirror of https://github.com/status-im/consul.git
Revert "ae: do not trigger on Resume while holding the lock"
This reverts commit bd00814301
.
This commit is contained in:
parent
d6f52d9ed1
commit
f8202f300f
|
@ -313,9 +313,8 @@ func (s *StateSyncer) Resume() {
|
|||
if s.paused < 0 {
|
||||
panic("unbalanced pause/resume")
|
||||
}
|
||||
trigger := s.paused == 0
|
||||
s.pauseLock.Unlock()
|
||||
if trigger {
|
||||
if s.paused == 0 {
|
||||
s.SyncChanges.Trigger()
|
||||
}
|
||||
s.pauseLock.Unlock()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue