mirror of
https://github.com/go-gitea/gitea
synced 2025-02-03 05:24:43 +00:00
Backport #14006 After cancelling the context we still need to wait for the command to finish otherwise zombie processes may occur Fix #13987
This commit is contained in:
parent
4f296f7436
commit
b8a2cd9f40
@ -153,6 +153,7 @@ func (c *Command) RunInDirTimeoutEnvFullPipelineFunc(env []string, timeout time.
|
|||||||
err := fn(ctx, cancel)
|
err := fn(ctx, cancel)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
cancel()
|
cancel()
|
||||||
|
_ = cmd.Wait()
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user