Fix task cancel context

This commit is contained in:
世界 2023-10-10 15:06:28 +08:00
parent d16ad13362
commit 96a05f9afe
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -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()
}