Revert "Fix race condition in Rule manager.Update() function"

This reverts commit 8b11d2cfb6.

Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
This commit is contained in:
Julien Pivotto 2020-03-01 19:32:14 +01:00 committed by Julien Pivotto
parent babadf13e8
commit 2051ae2e6a

View file

@ -921,7 +921,7 @@ func (m *Manager) Update(interval time.Duration, files []string, externalLabels
}
wg.Add(1)
go func(newg *Group, oldg *Group) {
go func(newg *Group) {
if ok {
oldg.stop()
newg.CopyState(oldg)
@ -934,7 +934,7 @@ func (m *Manager) Update(interval time.Duration, files []string, externalLabels
newg.run(m.opts.Context)
}()
wg.Done()
}(newg, oldg)
}(newg)
}
// Stop remaining old groups.