Skip to content

Commit

Permalink
Merge ed39ee3 into 3ab7700
Browse files Browse the repository at this point in the history
  • Loading branch information
penguinolog committed Dec 7, 2018
2 parents 3ab7700 + ed39ee3 commit ece1e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exec_helpers/subprocess_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def close_streams() -> None:
# Force stop cycle if no exit code after kill
except OSError:
exit_code = async_result.interface.poll()
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
self.logger.warning(
"{!s} has been completed just after timeout: please validate timeout.".format(command)
)
Expand Down

0 comments on commit ece1e89

Please sign in to comment.