Revert "ae: do not trigger on Resume while holding the lock"

This reverts commit bd00814301.
This commit is contained in:
Frank Schroeder 2017-10-23 10:08:32 +02:00
parent d6f52d9ed1
commit f8202f300f
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 2 additions and 3 deletions

View File

@ -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()
}