Skip to content

Commit

Permalink
simplify executor
Browse files Browse the repository at this point in the history
  • Loading branch information
longbinlai committed Nov 20, 2024
1 parent 04de028 commit 8d1dcf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/graphy/workflow/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def _process_task(self, task: Task) -> List[Task]:
self.processed_inspectors += 1
if self.processed_inspectors >= self.max_inspectors:
logger.info(
f"Reached max inspectors limit '{self.max_inspectors}', stopping execution)"
f"Reached max inspectors limit '{self.max_inspectors}', stopping execution"
)
return []
for edge in self.workflow.graph.get_adjacent_edges(executor.name):
Expand Down

0 comments on commit 8d1dcf0

Please sign in to comment.