Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helpers/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ def _apply_settings(previous: Settings | None):
config = initialize_agent(override_settings={"agent_profile": profile})
ctx.config = config # reinitialize context config with new settings
# apply config to agents
agent = ctx.agent0
agent = getattr(ctx, 'agent0', None)
while agent:
agent.config = ctx.config
agent = agent.get_data(agent.DATA_NAME_SUBORDINATE)
Expand Down