Browse Source

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

Signed-off-by: Joffrey F <[email protected]>
Joffrey F 7 years ago
parent
commit
75572f3860
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compose/cli/main.py

+ 1 - 1
compose/cli/main.py

@@ -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):