We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0494a6 commit 1afe2b7Copy full SHA for 1afe2b7
libs/agno/agno/workflow/workflow.py
@@ -3636,7 +3636,7 @@ def _prepare_steps(self):
3636
step_name = step.name or f"step_{i + 1}"
3637
log_debug(f"Step {i + 1}: Team '{step_name}' with {len(step.members)} members")
3638
prepared_steps.append(Step(name=step_name, description=step.description, team=step))
3639
- if isinstance(step, Step) and step.add_workflow_history is True and self.db is None:
+ elif isinstance(step, Step) and step.add_workflow_history is True and self.db is None:
3640
log_warning(
3641
f"Step '{step.name or f'step_{i+1}'}' has add_workflow_history=True "
3642
"but no database is configured in the Workflow. "
0 commit comments