Revert "ae: do not trigger on Resume while holding the lock"
This reverts commit bd00814301bbf5db037e739e91a0b66ebb564821.
This commit is contained in:
parent
655a24e383
commit
c27a2f1c66
|
@ -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