From 49f5dfd767e1a7f55bf4ccf11d56eb2752546379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Wed, 11 Oct 2023 12:04:11 +0800 Subject: [PATCH] Fix "Fix task cancel context" --- common/task/task.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/task/task.go b/common/task/task.go index b2bb7cf..d37d9e7 100644 --- a/common/task/task.go +++ b/common/task/task.go @@ -88,7 +88,7 @@ func (g *Group) RunContextList(contextList []context.Context) error { selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...)) - if selectedContext == 0 { + if selectedContext != 0 { taskCancel(upstreamErr) }