mirror of
https://github.com/docker/compose.git
synced 2025-07-22 05:04:27 +02:00
Merge pull request #430 from docker/fix_flaky_signal_fwd
Fix flaky nil pointer in signal forwarding to child process
This commit is contained in:
commit
e686de589d
@ -69,6 +69,9 @@ func Exec() {
|
||||
for {
|
||||
select {
|
||||
case sig := <-signals:
|
||||
if cmd.Process == nil {
|
||||
continue // can happen if receiving signal before the process is actually started
|
||||
}
|
||||
err := cmd.Process.Signal(sig)
|
||||
if err != nil {
|
||||
fmt.Printf("WARNING could not forward signal %s to %s : %s\n", sig.String(), ComDockerCli, err.Error())
|
||||
|
Loading…
x
Reference in New Issue
Block a user