We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cfa74f commit 5ebe418Copy full SHA for 5ebe418
exec_helpers/subprocess_runner.py
@@ -148,7 +148,7 @@ def close_streams(): # type: () -> None
148
# Force stop cycle if no exit code after kill
149
except OSError:
150
exit_code = async_result.interface.poll()
151
- if exit_code is not None: # Nothing to kill
+ if exit_code is not None and exit_code not in {-9, -15}: # Nothing to kill
152
self.logger.warning(
153
"{!s} has been completed just after timeout: please validate timeout.".format(command)
154
)
0 commit comments