Merge pull request #2585 from dnephin/short_signal_handlers
Fix signal handlers by moving shutdown logic out of handler
This commit is contained in:
commit
304a44aeab
4 changed files with 40 additions and 28 deletions
|
|
@ -55,7 +55,7 @@ class CLIMainTestCase(unittest.TestCase):
|
|||
service_names = ['web', 'db']
|
||||
timeout = 12
|
||||
|
||||
with mock.patch('compose.cli.main.signal', autospec=True) as mock_signal:
|
||||
with mock.patch('compose.cli.main.signals.signal', autospec=True) as mock_signal:
|
||||
attach_to_logs(project, log_printer, service_names, timeout)
|
||||
|
||||
assert mock_signal.signal.mock_calls == [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue