feat(backend+orchestrator): slice 13d — docker cut-over to the consolidated gateway (e2e green) #379

Closed
didericis-claude wants to merge 3 commits from orchestrator-cutover into orchestrator-agent-compose
Showing only changes of commit 9d85541b67 - Show all commits
+4 -1
View File
@@ -39,7 +39,10 @@ def _client(*, bottles: list[dict[str, object]] | None = None) -> Mock:
class TestLaunchConsolidated(unittest.TestCase):
def _run(self, client: Mock, provision: Mock | None = None, *, on_network=("172.18.0.2",)):
def _run(
self, client: Mock, provision: Mock | None = None,
*, on_network: tuple[str, ...] = ("172.18.0.2",),
):
service = MagicMock()
service.ensure_running.return_value = "http://orch:8080"
with patch(f"{_MOD}._network_cidr", return_value="172.18.0.0/16"), \