mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
task: Fix context not continuous
This commit is contained in:
parent
f97054e917
commit
4498e57839
1 changed files with 3 additions and 6 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue