Merge pull request #1679 from teawater/vmcache_defunct_proxy

kata_proxy: Open a special goroutine do cmd.Wait
This commit is contained in:
Peng Tao
2019-05-17 17:55:08 +08:00
committed by GitHub

View File

@@ -51,6 +51,8 @@ func (p *kataProxy) start(params proxyParams) (int, string, error) {
return -1, "", err
}
go cmd.Wait()
return cmd.Process.Pid, proxyURL, nil
}