From 1e1a052fedbc85a1d677b21a9909f8eb6d82d4db Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Sun, 1 Feb 2026 19:10:17 -0800 Subject: [PATCH] =?UTF-8?q?chore(core):=20=F0=9F=94=A7=20Update=20deployme?= =?UTF-8?q?nt=20orchestrator=20configuration=20for=20new=20CI/CD=20pipelin?= =?UTF-8?q?e=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- run/core/deployment-orchestrator.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run/core/deployment-orchestrator.ts b/run/core/deployment-orchestrator.ts index 91432eb..d4358ed 100644 --- a/run/core/deployment-orchestrator.ts +++ b/run/core/deployment-orchestrator.ts @@ -517,7 +517,7 @@ export class DeploymentOrchestrator { }> { // Individual deployment: use its first URL (health check) if (manifest.deployment.type !== 'group') { - const urls = manifest.orchestration.urls ?? []; + const urls = manifest.orchestration?.urls ?? []; if (urls.length === 0) return []; return [{ ...urls[0], @@ -534,7 +534,7 @@ export class DeploymentOrchestrator { for (const id of this.deploymentRegistry.getAll()) { const dep = this.deploymentRegistry.get(id); if (!dep || dep.deployment.type === 'group') continue; - if (!dep.orchestration.urls?.length) continue; + if (!dep.orchestration?.urls?.length) continue; urls.push({ ...dep.orchestration.urls[0],