Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thebhulawat committed Aug 24, 2024
1 parent c341b25 commit 9bb82f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jobber_fsm/core/orchestrator/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def _command_loop(self):
try:
command = await self._get_user_input()
if command.strip().lower() == "exit":
await self._shutdown()
await self.shutdown()
else:
await self.execute_command(command)
except asyncio.CancelledError:
Expand Down
3 changes: 2 additions & 1 deletion test/tests_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,8 @@ async def main(orchestrator_type: str):
state_to_agent_map=state_to_agent_map, eval_mode=True
)
await orchestrator.start()
await run_tests(orchestrator, 0, 30) # Example: Run first 5 tests
await run_tests(orchestrator, 20, 35
) # Example: Run first 5 tests
await orchestrator.shutdown()


Expand Down

0 comments on commit 9bb82f1

Please sign in to comment.