task: Fix context not continuous

This commit is contained in:
世界 2024-07-31 18:06:42 +08:00
parent f97054e917
commit 4498e57839
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

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