Skip to content

Commit 941568e

Browse files
committed
increase an unable message to warning - this is an exceptional circumstance to know about (even if we think that the follow on SIGKILL will correctly recover...)
1 parent 307ca26 commit 941568e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parsl/executors/high_throughput/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ def shutdown(self, timeout: float = 10.0):
831831
try:
832832
self.interchange_proc.wait(timeout=timeout)
833833
except subprocess.TimeoutExpired:
834-
logger.info("Unable to terminate Interchange process; sending SIGKILL")
834+
logger.warning("Unable to terminate Interchange process; sending SIGKILL")
835835
self.interchange_proc.kill()
836836

837837
logger.info("Closing ZMQ pipes")

0 commit comments

Comments
 (0)