diff --git a/common/task/task.go b/common/task/task.go index 5403481..b2bb7cf 100644 --- a/common/task/task.go +++ b/common/task/task.go @@ -88,6 +88,10 @@ func (g *Group) RunContextList(contextList []context.Context) error { selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...)) + if selectedContext == 0 { + taskCancel(upstreamErr) + } + if g.cleanup != nil { g.cleanup() }