fix(orchestrator): bound streamed request bodies
test / integration-docker (pull_request) Has been cancelled
tracker-policy-pr / check-pr (pull_request) Failing after 7s
test / image-input-builds (pull_request) Failing after 13m54s
test / unit (pull_request) Failing after 13m59s
test / coverage (pull_request) Has been skipped

This commit is contained in:
2026-07-27 02:24:06 +00:00
parent bb9f1cbbb4
commit a1acdd9665
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",
]