From ebd4c03c590f4019242a93f9067bdc262e06db68 Mon Sep 17 00:00:00 2001 From: XING Date: Sat, 4 Apr 2026 09:34:34 +0800 Subject: [PATCH] fix: relax to guard so implicit-recipient jobs also get failure notifications --- src/gateway/server-cron.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/server-cron.ts b/src/gateway/server-cron.ts index 360ceca972a..d5198e3fa71 100644 --- a/src/gateway/server-cron.ts +++ b/src/gateway/server-cron.ts @@ -483,7 +483,7 @@ export function buildGatewayCronService(params: { } else { // No explicit failureDestination — fall back to primary delivery channel (#60608) const primaryPlan = resolveCronDeliveryPlan(job); - if (primaryPlan.mode === "announce" && primaryPlan.requested && primaryPlan.to) { + if (primaryPlan.mode === "announce" && primaryPlan.requested) { const { agentId, cfg: runtimeConfig } = resolveCronAgent(job.agentId); void sendFailureNotificationAnnounce( params.deps,