mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
Fix task cancel
This commit is contained in:
parent
d9426b04ab
commit
f33bd0f122
2 changed files with 5 additions and 1 deletions
|
@ -6,6 +6,10 @@ import (
|
|||
)
|
||||
|
||||
func SelectContext(contextList []context.Context) (int, error) {
|
||||
if len(contextList) == 1 {
|
||||
<-contextList[0].Done()
|
||||
return 0, contextList[0].Err()
|
||||
}
|
||||
chosen, _, _ := reflect.Select(Map(Filter(contextList, func(it context.Context) bool {
|
||||
return it.Done() != nil
|
||||
}), func(it context.Context) reflect.SelectCase {
|
||||
|
|
|
@ -86,7 +86,7 @@ func (g *Group) RunContextList(contextList []context.Context) error {
|
|||
}()
|
||||
}
|
||||
|
||||
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskContext}, contextList...))
|
||||
selectedContext, upstreamErr := common.SelectContext(append([]context.Context{taskCancelContext}, contextList...))
|
||||
if selectedContext != 0 {
|
||||
returnError = E.Append(returnError, upstreamErr, func(err error) error {
|
||||
return E.Cause(err, "upstream")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue