mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
task: fix concurrent write
This commit is contained in:
parent
ce9dfad347
commit
1bcf7e8a13
1 changed files with 2 additions and 0 deletions
|
@ -88,9 +88,11 @@ 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 {
|
if selectedContext != 0 {
|
||||||
|
errorAccess.Lock()
|
||||||
returnError = E.Append(returnError, upstreamErr, func(err error) error {
|
returnError = E.Append(returnError, upstreamErr, func(err error) error {
|
||||||
return E.Cause(err, "upstream")
|
return E.Cause(err, "upstream")
|
||||||
})
|
})
|
||||||
|
errorAccess.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
if g.cleanup != nil {
|
if g.cleanup != nil {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue