fix task cancelContext

This commit is contained in:
unknown 2023-10-10 19:41:02 +03:30
parent 59101a4400
commit 40e833187c

View file

@ -56,7 +56,7 @@ func (g *Group) RunContextList(contextList []context.Context) error {
} }
taskContext, taskFinish := common.ContextWithCancelCause(context.Background()) taskContext, taskFinish := common.ContextWithCancelCause(context.Background())
taskCancelContext, taskCancel := common.ContextWithCancelCause(context.Background()) taskCancelContext, taskCancel := common.ContextWithCancelCause(contextList[0])
var errorAccess sync.Mutex var errorAccess sync.Mutex
var returnError error var returnError error
@ -88,10 +88,6 @@ func (g *Group) RunContextList(contextList []context.Context) error {
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...)) selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
if selectedContext == 0 {
taskCancel(upstreamErr)
}
if g.cleanup != nil { if g.cleanup != nil {
g.cleanup() g.cleanup()
} }