Skip to content

Commit

Permalink
Update cylc/flow/scheduler.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ronnie Dutta <[email protected]>
  • Loading branch information
hjoliver and MetRonnie authored Jan 25, 2024
1 parent a4a5be7 commit d5803dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cylc/flow/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -918,9 +918,9 @@ def process_queued_task_messages(self) -> None:
# Remaining messages don't have a receiving task in the pool.
# E.g., after manually setting a running task to finished.
for _id, tms in messages.items():
warn = "Undeliverable task messages received and ignored:\n"
warn = "Undeliverable task messages received and ignored:"
for _, msg in tms:
warn += f'{msg.job_id}: {msg.severity} - "{msg.message}"'
warn += f'\n {msg.job_id}: {msg.severity} - "{msg.message}"'
LOG.warning(warn)

def get_command_method(self, command_name: str) -> Callable:
Expand Down

0 comments on commit d5803dc

Please sign in to comment.