fix(orchestrator): keep host client dependency-free
lint / lint (push) Successful in 1m6s
test / unit (pull_request) Successful in 2m35s
test / integration-docker (pull_request) Failing after 2m26s
test / coverage (pull_request) Has been skipped
test / image-input-builds (pull_request) Successful in 1m3s
tracker-policy-pr / check-pr (pull_request) Failing after 15s

This commit is contained in:
2026-07-26 23:49:55 +00:00
parent 6fef945d4e
commit cf7482b098
4 changed files with 10 additions and 5 deletions
+1 -3
View File
@@ -13,11 +13,9 @@ from starlette.types import ASGIApp, Message, Receive, Scope, Send
from ..orchestrator_auth import ROLE_CLI, ROLES
from ..supervisor.types import TOOLS
from ..trust_domain import CONTROL_PLANE
from .http_contract import MAX_BODY_BYTES, ORCHESTRATOR_AUTH_HEADER
from .service import OrchestratorCore
ORCHESTRATOR_AUTH_HEADER = "x-bot-bottle-orchestrator-auth"
MAX_BODY_BYTES = 1 * 1024 * 1024
_GATEWAY_ROUTES = frozenset({
("POST", "/resolve"),
("POST", "/supervise/propose"),