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
12 changes: 12 additions & 0 deletions backend/app/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,18 @@ def _validate_judgments_resume_sweep_minutes(cls, value: int) -> int:
default="512m",
description="ES_JAVA_OPTS heap sizing for the elasticsearch+opensearch containers",
)
relyloop_worker_api_base_url: str = Field(
default="http://api:8000",
description=(
"Base URL the demo-reseed Arq worker uses for its API self-calls "
"(POST /api/v1/clusters etc.). Defaults to the Compose service alias "
"`http://api:8000` (the worker runs in its own container, so `localhost` "
"would resolve to the worker, not the API). Overridden to "
"`http://127.0.0.1:8000` by the demo-reseed integration harness, which "
"boots an in-process uvicorn on the test host. "
"chore_demo_seeding_integration_tests_rewrite D-3."
),
)
relyloop_allow_private_clusters: bool = Field(
default=True,
description="Permit cluster registration against private-range / loopback IPs. "
Expand Down
Loading
Loading