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 3ab7700 commit 07e3b08Copy full SHA for 07e3b08
exec_helpers/subprocess_runner.py
@@ -165,7 +165,7 @@ def close_streams() -> None:
165
# Force stop cycle if no exit code after kill
166
except OSError:
167
exit_code = async_result.interface.poll()
168
- 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
169
self.logger.warning(
170
"{!s} has been completed just after timeout: please validate timeout.".format(command)
171
)
0 commit comments