mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
fix task cancelContext
This commit is contained in:
parent
59101a4400
commit
40e833187c
1 changed files with 1 additions and 5 deletions
|
@ -56,7 +56,7 @@ func (g *Group) RunContextList(contextList []context.Context) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
taskContext, taskFinish := common.ContextWithCancelCause(context.Background())
|
taskContext, taskFinish := common.ContextWithCancelCause(context.Background())
|
||||||
taskCancelContext, taskCancel := common.ContextWithCancelCause(context.Background())
|
taskCancelContext, taskCancel := common.ContextWithCancelCause(contextList[0])
|
||||||
|
|
||||||
var errorAccess sync.Mutex
|
var errorAccess sync.Mutex
|
||||||
var returnError error
|
var returnError error
|
||||||
|
@ -88,10 +88,6 @@ func (g *Group) RunContextList(contextList []context.Context) error {
|
||||||
|
|
||||||
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
|
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
|
||||||
|
|
||||||
if selectedContext == 0 {
|
|
||||||
taskCancel(upstreamErr)
|
|
||||||
}
|
|
||||||
|
|
||||||
if g.cleanup != nil {
|
if g.cleanup != nil {
|
||||||
g.cleanup()
|
g.cleanup()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue