From af4241489ed26d2396834da8597915a5e24cd295 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Tue, 15 Oct 2024 20:26:19 +0000 Subject: [PATCH] Fix typo in "fully drained" log message (#3636) --- parsl/executors/high_throughput/process_worker_pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsl/executors/high_throughput/process_worker_pool.py b/parsl/executors/high_throughput/process_worker_pool.py index 59efe501f1..7e238bb61c 100755 --- a/parsl/executors/high_throughput/process_worker_pool.py +++ b/parsl/executors/high_throughput/process_worker_pool.py @@ -362,7 +362,7 @@ def pull_tasks(self, kill_event): if tasks == HEARTBEAT_CODE: logger.debug("Got heartbeat from interchange") elif tasks == DRAINED_CODE: - logger.info("Got fulled drained message from interchange - setting kill flag") + logger.info("Got fully drained message from interchange - setting kill flag") kill_event.set() else: task_recv_counter += len(tasks)