Skip to content

Commit

Permalink
Promote unable to terminate warning to logger.WARNING (#3574)
Browse files Browse the repository at this point in the history
Even if the subsequent SIGKILL works, this is an exceptional circumstance
that should be logged.
  • Loading branch information
benclifford authored Aug 8, 2024
1 parent 114e701 commit ec9bbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ def shutdown(self, timeout: float = 10.0):
try:
self.interchange_proc.wait(timeout=timeout)
except subprocess.TimeoutExpired:
logger.info("Unable to terminate Interchange process; sending SIGKILL")
logger.warning("Unable to terminate Interchange process; sending SIGKILL")
self.interchange_proc.kill()

logger.info("Closing ZMQ pipes")
Expand Down

0 comments on commit ec9bbf6

Please sign in to comment.