Immediately kill / force-rm one-off container when receiving SIGHUP

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2018-02-07 14:03:31 -08:00
parent a6459efcad
commit 75572f3860
1 changed files with 1 additions and 1 deletions

View File

@ -1274,7 +1274,7 @@ def run_one_off_container(container_options, project, service, options, project_
service.start_container(container)
pty.start(sockets)
exit_code = container.wait()
except (signals.ShutdownException, signals.HangUpException):
except (signals.ShutdownException):
project.client.stop(container.id)
exit_code = 1
except (signals.ShutdownException, signals.HangUpException):