[#204] gc: Fix GC handlers start

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
support/v0.36
Dmitrii Stepanov 2023-04-03 19:15:13 +03:00 committed by Gitea
parent 0948a280fa
commit 8e5a0dcf27
1 changed files with 3 additions and 2 deletions

View File

@ -136,7 +136,8 @@ func (gc *gc) listenEvents(ctx context.Context) {
v.cancelFunc()
v.prevGroup.Wait()
ctx, v.cancelFunc = context.WithCancel(ctx)
var runCtx context.Context
runCtx, v.cancelFunc = context.WithCancel(ctx)
v.prevGroup.Add(len(v.handlers))
@ -144,7 +145,7 @@ func (gc *gc) listenEvents(ctx context.Context) {
h := v.handlers[i]
err := gc.workerPool.Submit(func() {
h(ctx, event)
h(runCtx, event)
v.prevGroup.Done()
})
if err != nil {