fix(orchestrator): bound streamed request bodies
lint / lint (push) Successful in 59s
test / integration-docker (pull_request) Waiting to run
test / unit (pull_request) Has started running
test / image-input-builds (pull_request) Has started running
test / coverage (pull_request) Blocked by required conditions
tracker-policy-pr / check-pr (pull_request) Failing after 10s

This commit is contained in:
2026-07-27 02:24:06 +00:00
parent bc716bb5a3
commit b2965e292f
6 changed files with 194 additions and 57 deletions
+1 -3
View File
@@ -44,7 +44,7 @@ if TYPE_CHECKING:
from ..gateway import Gateway, GatewayError
from .lifecycle import Orchestrator
from .service import OrchestratorCore
from .server import OrchestratorServer, create_app, dispatch, make_server
from .server import OrchestratorServer, create_app, make_server
# Facade name -> submodule that defines it. Lazy so importing a leaf (or the
@@ -68,7 +68,6 @@ _LAZY: dict[str, str] = {
"Orchestrator": ".lifecycle",
"OrchestratorCore": ".service",
"create_app": ".server",
"dispatch": ".server",
"OrchestratorServer": ".server",
"make_server": ".server",
}
@@ -102,7 +101,6 @@ __all__ = [
"Orchestrator",
"OrchestratorCore",
"create_app",
"dispatch",
"OrchestratorServer",
"make_server",
]