惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
月光博客
月光博客
Jina AI
Jina AI
F
Fortinet All Blogs
博客园 - 聂微东
The Cloudflare Blog
美团技术团队
B
Blog RSS Feed
N
Netflix TechBlog - Medium
罗磊的独立博客
The GitHub Blog
The GitHub Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
V
V2EX

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(cron): centralize wake session target resolution · op...
steipete · 2026-05-12 · via Recent Commits to openclaw:main

@@ -197,54 +197,38 @@ export function buildGatewayCronService(params: {

197197

return canonical;

198198

};

199199200-

const resolveCronWakeTarget = (opts?: { agentId?: string; sessionKey?: string | null }) => {

200+

const resolveCronTarget = (opts?: {

201+

agentId?: string | null;

202+

sessionKey?: string | null;

203+

preserveUntargeted?: boolean;

204+

}) => {

201205

const requestedAgentId =

202206

typeof opts?.agentId === "string" && opts.agentId.trim()

203207

? normalizeAgentId(opts.agentId)

204208

: undefined;

205209

const requestedSessionKey =

206210

typeof opts?.sessionKey === "string" && opts.sessionKey.trim() ? opts.sessionKey : undefined;

207-

// Derive agentId from sessionKey only when the key is agent-prefixed

208-

// (`agent:<id>:...`). For relative session keys like `discord:channel:ops`,

209-

// `resolveAgentIdFromSessionKey` returns the literal `DEFAULT_AGENT_ID`

210-

// ("main") regardless of cfg, which would route relative keys to the

211-

// hardcoded "main" agent even on non-main-default deployments. Passing

212-

// `undefined` lets `resolveCronAgent` fall back to the configured default

213-

// agent so wake and enqueue resolve to the same target.

214-

const parsedSessionKeyAgentId =

215-

requestedSessionKey && parseAgentSessionKey(requestedSessionKey)

216-

? normalizeAgentId(resolveAgentIdFromSessionKey(requestedSessionKey))

217-

: undefined;

218-

const parsedSessionKey = requestedSessionKey

219-

? parseAgentSessionKey(requestedSessionKey)

220-

: undefined;

221-

const requestedOrDerived = requestedAgentId ?? parsedSessionKeyAgentId;

222-

if (!requestedOrDerived && !requestedSessionKey) {

211+

if (opts?.preserveUntargeted && !requestedAgentId && !requestedSessionKey) {

223212

return { runtimeConfig: getRuntimeConfig(), agentId: undefined, sessionKey: undefined };

224213

}

225-

// For relative session keys (e.g. `discord:channel:ops`) we want the

226-

// configured default agent's session, which `resolveCronAgent(undefined)`

227-

// returns. For no-target wakes, the branch above preserves the existing

228-

// heartbeat fanout/broadcast behavior by leaving agentId/sessionKey unset.

229-

const { agentId: resolvedAgentId, cfg: runtimeConfig } = resolveCronAgent(requestedOrDerived);

230-

const agentId = resolvedAgentId || undefined;

231-

// If an agent-prefixed session key names an unconfigured agent, fall back

232-

// to the configured default agent but keep the requested session suffix.

233-

const sessionKeyForResolution =

234-

!requestedAgentId &&

235-

parsedSessionKey &&

236-

agentId &&

237-

normalizeAgentId(parsedSessionKey.agentId) !== normalizeAgentId(agentId)

238-

? parsedSessionKey.rest

239-

: requestedSessionKey;

240-

const sessionKey =

241-

sessionKeyForResolution && agentId

242-

? resolveCronSessionKey({

243-

runtimeConfig,

244-

agentId,

245-

requestedSessionKey: sessionKeyForResolution,

246-

})

214+215+

// Derive from canonical agent-prefixed keys only. Relative keys intentionally

216+

// fall through to the configured default instead of hardcoding "main".

217+

const derivedAgentId =

218+

requestedSessionKey && parseAgentSessionKey(requestedSessionKey)

219+

? resolveAgentIdFromSessionKey(requestedSessionKey)

247220

: undefined;

221+

const { agentId: resolvedAgentId, cfg: runtimeConfig } = resolveCronAgent(

222+

requestedAgentId ?? derivedAgentId,

223+

);

224+

const agentId = resolvedAgentId || undefined;

225+

const sessionKey = agentId

226+

? resolveCronSessionKey({

227+

runtimeConfig,

228+

agentId,

229+

requestedSessionKey,

230+

})

231+

: undefined;

248232

return { runtimeConfig, agentId, sessionKey };

249233

};

250234

@@ -304,41 +288,15 @@ export function buildGatewayCronService(params: {

304288

resolveSessionStorePath,

305289

sessionStorePath,

306290

enqueueSystemEvent: (text, opts) => {

307-

// When the caller passes only a sessionKey (e.g. `system event --session-key`),

308-

// derive agentId from that key so a non-default agent's session is not silently

309-

// rejected as foreign by resolveCronSessionKey and rerouted to the default agent.

310-

// Only derive from agent-prefixed keys — for relative keys, let resolveCronAgent

311-

// fall back to the configured default so we don't hardcode "main" on multi-agent

312-

// deployments where main exists but isn't the default. (Mirrors the same fix in

313-

// resolveCronWakeTarget above.)

314-

const derivedAgentId =

315-

opts?.agentId ??

316-

(opts?.sessionKey && parseAgentSessionKey(opts.sessionKey)

317-

? resolveAgentIdFromSessionKey(opts.sessionKey)

318-

: undefined);

319-

const { agentId, cfg: runtimeConfig } = resolveCronAgent(derivedAgentId);

320-

const parsedSessionKey = opts?.sessionKey ? parseAgentSessionKey(opts.sessionKey) : undefined;

321-

// Mirror wake target resolution for unknown agent-prefixed keys:

322-

// default agent, same requested session suffix.

323-

const requestedSessionKey =

324-

!opts?.agentId &&

325-

parsedSessionKey &&

326-

normalizeAgentId(parsedSessionKey.agentId) !== normalizeAgentId(agentId)

327-

? parsedSessionKey.rest

328-

: opts?.sessionKey;

329-

const sessionKey = resolveCronSessionKey({

330-

runtimeConfig,

331-

agentId,

332-

requestedSessionKey,

333-

});

291+

const { sessionKey } = resolveCronTarget(opts);

334292

enqueueSystemEvent(text, {

335293

sessionKey,

336294

contextKey: opts?.contextKey,

337295

trusted: opts?.trusted,

338296

});

339297

},

340298

requestHeartbeat: (opts) => {

341-

const { agentId, sessionKey } = resolveCronWakeTarget(opts);

299+

const { agentId, sessionKey } = resolveCronTarget({ ...opts, preserveUntargeted: true });

342300

requestHeartbeat({

343301

source: opts?.source ?? "cron",

344302

intent: opts?.intent ?? "event",

@@ -349,7 +307,10 @@ export function buildGatewayCronService(params: {

349307

});

350308

},

351309

runHeartbeatOnce: async (opts) => {

352-

const { runtimeConfig, agentId, sessionKey } = resolveCronWakeTarget(opts);

310+

const { runtimeConfig, agentId, sessionKey } = resolveCronTarget({

311+

...opts,

312+

preserveUntargeted: true,

313+

});

353314

return await runHeartbeatOnce({

354315

cfg: runtimeConfig,

355316

source: opts?.source ?? "cron",