Skip to content

Commit

Permalink
Fix typo in "fully drained" log message (#3636)
Browse files Browse the repository at this point in the history
  • Loading branch information
benclifford authored Oct 15, 2024
1 parent ac62e04 commit af42414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsl/executors/high_throughput/process_worker_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit af42414

Please sign in to comment.