Skip to content
Open
Show file tree
Hide file tree
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 src/backend/tests/unit/api/v1/test_endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ async def test_get_config_unauthenticated_returns_correct_field_types(client: As
assert isinstance(result["frontend_timeout"], int), "frontend_timeout must be an integer"
assert isinstance(result["voice_mode_available"], bool), "voice_mode_available must be a boolean"
assert isinstance(result["feature_flags"], dict), "feature_flags must be an object"
assert result["feature_flags"].get("wxo_deployments") is True, "wxo_deployments flag should default to true"
assert result["feature_flags"].get("wxo_deployments") is False, "wxo_deployments flag should default to false"
assert result["event_delivery"] in ["polling", "streaming", "direct"], (
"event_delivery must be one of: polling, streaming, direct"
)
Expand Down
2 changes: 1 addition & 1 deletion src/lfx/src/lfx/services/settings/feature_flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class FeatureFlags(BaseSettings):
wxo_deployments: bool = True
wxo_deployments: bool = False
"""
Enable Watsonx Orchestrate deployments.
"""
Expand Down
Loading