-
-
Notifications
You must be signed in to change notification settings - Fork 80.7k
[Bug]: Cron announce fallback delivery reports success but message never arrives (WeChat + Feishu) on 2026.5.7 #79753
Copy link
Copy link
Closed
Labels
P1High-priority user-facing bug, regression, or broken workflow.High-priority user-facing bug, regression, or broken workflow.clawsweeper:linked-pr-openClawSweeper found an open linked pull request for this issue.ClawSweeper found an open linked pull request for this issue.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:message-lossChannel message delivery can be lost, duplicated, or misrouted.Channel message delivery can be lost, duplicated, or misrouted.impact:session-stateSession, memory, transcript, context, or agent state can drift or corrupt.Session, memory, transcript, context, or agent state can drift or corrupt.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.staleMarked as stale due to inactivityMarked as stale due to inactivity
Description
Metadata
Metadata
Assignees
Labels
P1High-priority user-facing bug, regression, or broken workflow.High-priority user-facing bug, regression, or broken workflow.clawsweeper:linked-pr-openClawSweeper found an open linked pull request for this issue.ClawSweeper found an open linked pull request for this issue.clawsweeper:no-new-fix-prClawSweeper does not recommend queueing a new automated fix PR for this issue.ClawSweeper does not recommend queueing a new automated fix PR for this issue.clawsweeper:source-reproClawSweeper found a high-confidence source-level issue reproduction.ClawSweeper found a high-confidence source-level issue reproduction.impact:message-lossChannel message delivery can be lost, duplicated, or misrouted.Channel message delivery can be lost, duplicated, or misrouted.impact:session-stateSession, memory, transcript, context, or agent state can drift or corrupt.Session, memory, transcript, context, or agent state can drift or corrupt.issue-rating: 🦞 diamond lobsterVery strong issue quality with high-confidence source-level or clear reproduction.Very strong issue quality with high-confidence source-level or clear reproduction.staleMarked as stale due to inactivityMarked as stale due to inactivity
Type
Fields
Priority
None yet
Bug type
Behavior bug (incorrect output/state without crash)
Beta release blocker
No
Summary
On OpenClaw 2026.5.7, cron jobs with
--announcedelivery reportdelivered: trueincron runs, but the message never arrives on the channel. Reproduced on bothopenclaw-weixin(WeChat) andfeishuchannels.This appears to be a live reproduction of #78532 —
deliverySucceededreturns true when no channel adapter was actually invoked.Environment
Reproduction
We ran three test rounds to isolate the issue:
Test 1: Cron with --announce, default agent (glm-4.7)
Result:
cron runsshowsstatus: ok,delivered: true,fallbackUsed: true. Message never arrived on WeChat.Test 2: Cron with --announce, specific agent (glm-5.1)
Same setup with
--agent aand all channel/account/target specified explicitly.Result identical:
delivered: true,fallbackUsed: true, no message received.Also tested with feishu channel — same result:
delivered: true, message never arrived.Test 3: Cron with --no-deliver, agent sends via openclaw message send ✅
Result: Agent successfully called
openclaw message sendvia exec, message arrived immediately. ✅Cron runs evidence (Test 1)
{ "status": "ok", "delivered": true, "deliveryStatus": "delivered", "delivery": { "resolved": {"ok": true, "channel": "openclaw-weixin", "to": "<target>", "accountId": "<account>", "source": "explicit"}, "fallbackUsed": true, "delivered": true }, "model": "glm-4.7", "provider": "zai", "durationMs": 53435, "usage": {"input_tokens": 9506, "output_tokens": 337, "total_tokens": 9710} }openclaw message send works correctly
Direct CLI send succeeds and message arrives instantly:
Expected behavior
Cron
--announcedelivery should deliver the message to the configured channel, or report a clear failure if delivery was not actually performed.Actual behavior
Cron reports
delivered: truewithfallbackUsed: truebut the message never arrives. The channel adapter was never actually invoked.openclaw message sendto the same channel/target works fine.Root cause (likely)
This matches #78532:
deliverOutboundPayloadsexits early without invoking a channel adapter (via the announce/fallback path), anddeliverySucceeded = !deliveryHadErrordefaults to true since no error was set. The announce delivery pipeline appears to hit an early return path that skips actual adapter invocation.Workaround
Use
--no-deliveron the cron job and have the agent callopenclaw message senddirectly viaexecin its response. This bypasses the broken announce fallback delivery pipeline and messages arrive correctly.Additional context
This was also observed on OpenClaw 2026.4.9 with WeChat, suggesting the announce delivery issue has persisted across multiple releases.
Related issues: #78532, #77260, #78608
OpenClaw version
2026.5.7
Operating system
Linux (Docker, aarch64)
Install method
npm global
Model
glm-5.1 / glm-4.7
Provider / routing chain
zai/glm-5.1 → gateway
Impact and severity
Cron-based automation appears to complete successfully (status ok, delivered true) but messages silently disappear. This makes scheduled notifications and reminders completely unreliable without manual verification.