Skip to content

Commit

Permalink
Changing the message when no tasks selected (#8742)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspiringmind-code authored Oct 14, 2024
1 parent a334d7c commit e20f96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/TaskWorker/MasterWorker.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ def algorithm(self):
while not self.STOP:
selection_limit = self.config.TaskWorker.task_scheduling_limit
if not self._selectWork(limit=selection_limit):
self.logger.warning("Selection of work failed.")
self.logger.warning("No tasks selected.")
else:
self.logger.info("Work selected successfully.")
limit = self.slaves.queueableTasks()
Expand Down

0 comments on commit e20f96e

Please sign in to comment.