Skip to content

Commit ec9bbf6

Browse files
authored
Promote unable to terminate warning to logger.WARNING (#3574)
Even if the subsequent SIGKILL works, this is an exceptional circumstance that should be logged.
1 parent 114e701 commit ec9bbf6

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
@@ -832,7 +832,7 @@ def shutdown(self, timeout: float = 10.0):
832832
try:
833833
self.interchange_proc.wait(timeout=timeout)
834834
except subprocess.TimeoutExpired:
835-
logger.info("Unable to terminate Interchange process; sending SIGKILL")
835+
logger.warning("Unable to terminate Interchange process; sending SIGKILL")
836836
self.interchange_proc.kill()
837837

838838
logger.info("Closing ZMQ pipes")

0 commit comments

Comments
 (0)