should no defer when detach
Signed-off-by: Lifubang <lifubang@acmcoder.com>
This commit is contained in:
parent
09a5b1f8af
commit
2d3a4f99ec
@ -94,7 +94,10 @@ var execCommand = cli.Command{
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer process.Delete(ctx)
|
// if detach, we should not call this defer
|
||||||
|
if !detach {
|
||||||
|
defer process.Delete(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
statusC, err := process.Wait(ctx)
|
statusC, err := process.Wait(ctx)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user