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

推荐订阅源

WordPress大学
WordPress大学
B
Blog
M
MIT News - Artificial intelligence
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
P
Proofpoint News Feed
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
博客园 - 叶小钗
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
腾讯CDC
博客园 - Franky
博客园 - 聂微东
V
Visual Studio Blog
GbyAI
GbyAI
Martin Fowler
Martin Fowler
罗磊的独立博客
Y
Y Combinator Blog

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: isolate cron nested lane concurrency · openclaw/open...
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -61,7 +61,7 @@ Docs: https://docs.openclaw.ai

6161

- Google Meet: add `realtime.agentId` so live meeting consults can target a named OpenClaw agent instead of always using `main`. (#72381) Thanks @BsnizND.

6262

- Google Meet: route stateful `google_meet` tool actions through the gateway-owned runtime so created or joined realtime sessions remain visible to status, speak, and leave after the agent turn ends. Fixes #72440. (#72441) Thanks @BsnizND.

6363

- Matrix/E2EE: stabilize recovery and broken-device QA flows while avoiding Matrix device-cleanup sync races that could leave shutdown-time crypto work running. Thanks @gumadeiras.

64-

- Cron: apply `cron.maxConcurrentRuns` to isolated agent-turn execution as well as cron dispatch, so parallel cron jobs no longer serialize on the inner nested LLM lane. Fixes #72707. Thanks @kagura-agent.

64+

- Cron: apply `cron.maxConcurrentRuns` to a dedicated `cron-nested` isolated agent-turn lane as well as cron dispatch, so parallel cron jobs no longer serialize on inner LLM execution while non-cron nested flows keep their existing lane behavior. Fixes #72707. Thanks @kagura-agent.

6565

- Cron: treat isolated run-level agent failures as job errors even when no reply payload is produced, synthesizing a safe error payload so model/provider failures increment error counters and trigger failure notifications instead of clearing as successful. Fixes #43604; carries forward #43631. Thanks @SPFAdvisors.

6666

- Cron: preserve exact `NO_REPLY` tool results from isolated jobs with empty final assistant turns as quiet successes instead of surfacing incomplete-turn errors. Fixes #68452; carries forward #68453. Thanks @anyech.

6767

- Cron: resolve failure alerts and failure-destination announcements against `session:<id>` targets before falling back to the creator session, so jobs created from group chats can notify the targeted direct session without cross-account routing errors. Refs #62777; carries forward #68535. Thanks @slideshow-dingo and @likewen-tech.

Original file line numberDiff line numberDiff line change

@@ -398,7 +398,7 @@ Model override note:

398398

}

399399

```

400400
401-

`maxConcurrentRuns` limits both scheduled cron dispatch and isolated agent-turn execution. Isolated cron agent turns use the queue's `nested` execution lane internally, so raising this value lets independent cron LLM runs progress in parallel instead of only starting their outer cron wrappers.

401+

`maxConcurrentRuns` limits both scheduled cron dispatch and isolated agent-turn execution. Isolated cron agent turns use the queue's dedicated `cron-nested` execution lane internally, so raising this value lets independent cron LLM runs progress in parallel instead of only starting their outer cron wrappers. The shared non-cron `nested` lane is not widened by this setting.

402402
403403

The runtime state sidecar is derived from `cron.store`: a `.json` store such as `~/clawd/cron/jobs.json` uses `~/clawd/cron/jobs-state.json`, while a store path without a `.json` suffix appends `-state.json`.

404404
Original file line numberDiff line numberDiff line change

@@ -77,7 +77,7 @@ Defaults: `debounceMs: 1000`, `cap: 20`, `drop: summarize`.

7777
7878

- Applies to auto-reply agent runs across all inbound channels that use the gateway reply pipeline (WhatsApp web, Telegram, Slack, Discord, Signal, iMessage, webchat, etc.).

7979

- Default lane (`main`) is process-wide for inbound + main heartbeats; set `agents.defaults.maxConcurrent` to allow multiple sessions in parallel.

80-

- Additional lanes may exist (e.g. `cron`, `nested`, `subagent`) so background jobs can run in parallel without blocking inbound replies. Isolated cron agent turns hold a `cron` slot while their inner agent execution uses `nested`; both use `cron.maxConcurrentRuns`. These detached runs are tracked as [background tasks](/automation/tasks).

80+

- Additional lanes may exist (e.g. `cron`, `cron-nested`, `nested`, `subagent`) so background jobs can run in parallel without blocking inbound replies. Isolated cron agent turns hold a `cron` slot while their inner agent execution uses `cron-nested`; both use `cron.maxConcurrentRuns`. Shared non-cron `nested` flows keep their own lane behavior. These detached runs are tracked as [background tasks](/automation/tasks).

8181

- Per-session lanes guarantee that only one agent run touches a given session at a time.

8282

- No external dependencies or background worker threads; pure TypeScript + promises.

8383
Original file line numberDiff line numberDiff line change

@@ -1,7 +1,10 @@

11

import { describe, expect, it } from "vitest";

2+

import { CommandLane } from "../process/lanes.js";

23

import {

4+

AGENT_LANE_CRON_NESTED,

35

AGENT_LANE_NESTED,

46

isNestedAgentLane,

7+

resolveCronAgentLane,

58

resolveNestedAgentLane,

69

resolveNestedAgentLaneForSession,

710

} from "./lanes.js";

@@ -11,14 +14,27 @@ describe("resolveNestedAgentLane", () => {

1114

expect(resolveNestedAgentLane()).toBe(AGENT_LANE_NESTED);

1215

});

1316
14-

it("moves cron lane callers onto the nested lane", () => {

15-

expect(resolveNestedAgentLane("cron")).toBe(AGENT_LANE_NESTED);

16-

expect(resolveNestedAgentLane(" cron ")).toBe(AGENT_LANE_NESTED);

17+

it("preserves explicit lanes", () => {

18+

expect(resolveNestedAgentLane("cron")).toBe(CommandLane.Cron);

19+

expect(resolveNestedAgentLane(" cron ")).toBe(CommandLane.Cron);

20+

expect(resolveNestedAgentLane("subagent")).toBe("subagent");

21+

expect(resolveNestedAgentLane(" custom-lane ")).toBe("custom-lane");

22+

});

23+

});

24+
25+

describe("resolveCronAgentLane", () => {

26+

it("defaults cron-owned runs to the cron-nested lane", () => {

27+

expect(resolveCronAgentLane()).toBe(AGENT_LANE_CRON_NESTED);

28+

});

29+
30+

it("moves cron lane callers onto the cron-nested lane", () => {

31+

expect(resolveCronAgentLane("cron")).toBe(AGENT_LANE_CRON_NESTED);

32+

expect(resolveCronAgentLane(" cron ")).toBe(AGENT_LANE_CRON_NESTED);

1733

});

1834
1935

it("preserves non-cron lanes", () => {

20-

expect(resolveNestedAgentLane("subagent")).toBe("subagent");

21-

expect(resolveNestedAgentLane(" custom-lane ")).toBe("custom-lane");

36+

expect(resolveCronAgentLane("subagent")).toBe("subagent");

37+

expect(resolveCronAgentLane(" custom-lane ")).toBe("custom-lane");

2238

});

2339

});

2440
Original file line numberDiff line numberDiff line change

@@ -1,20 +1,29 @@

11

import { CommandLane } from "../process/lanes.js";

22
33

export const AGENT_LANE_NESTED = CommandLane.Nested;

4+

export const AGENT_LANE_CRON_NESTED = CommandLane.CronNested;

45

export const AGENT_LANE_SUBAGENT = CommandLane.Subagent;

56

const NESTED_LANE = "nested";

67

const NESTED_LANE_PREFIX = `${NESTED_LANE}:`;

78
89

export function resolveNestedAgentLane(lane?: string): string {

910

const trimmed = lane?.trim();

10-

// Nested agent runs should not inherit the cron execution lane. Cron jobs

11-

// already occupy that lane while they dispatch inner work.

12-

if (!trimmed || trimmed === "cron") {

11+

if (!trimmed) {

1312

return AGENT_LANE_NESTED;

1413

}

1514

return trimmed;

1615

}

1716
17+

export function resolveCronAgentLane(lane?: string): string {

18+

const trimmed = lane?.trim();

19+

// Cron jobs already occupy the outer cron lane, so inner agent work needs

20+

// its own lane to avoid self-deadlock without widening shared nested flows.

21+

if (!trimmed || trimmed === CommandLane.Cron) {

22+

return AGENT_LANE_CRON_NESTED;

23+

}

24+

return trimmed;

25+

}

26+
1827

export function resolveNestedAgentLaneForSession(sessionKey: string | undefined): string {

1928

const trimmed = sessionKey?.trim();

2029

if (!trimmed) {

Original file line numberDiff line numberDiff line change

@@ -10,19 +10,20 @@ describe("resolveGlobalLane", () => {

1010

}

1111

});

1212
13-

it("maps cron lane to nested lane to prevent deadlocks", () => {

13+

it("maps cron lane to cron-nested lane to prevent deadlocks", () => {

1414

// When cron jobs trigger nested agent runs, the outer execution holds

1515

// the cron lane slot. Inner work must use a separate lane to avoid

1616

// deadlock. See: https://github.com/openclaw/openclaw/issues/44805

1717

for (const lane of ["cron", " cron "]) {

18-

expect(resolveGlobalLane(lane)).toBe(CommandLane.Nested);

18+

expect(resolveGlobalLane(lane)).toBe(CommandLane.CronNested);

1919

}

2020

});

2121
2222

it("preserves other lanes as-is", () => {

2323

for (const [lane, expected] of [

2424

["main", CommandLane.Main],

2525

["subagent", CommandLane.Subagent],

26+

["cron-nested", CommandLane.CronNested],

2627

["nested", CommandLane.Nested],

2728

["custom-lane", "custom-lane"],

2829

[" custom ", "custom"],

Original file line numberDiff line numberDiff line change

@@ -7,9 +7,10 @@ export function resolveSessionLane(key: string) {

77
88

export function resolveGlobalLane(lane?: string) {

99

const cleaned = lane?.trim();

10-

// Cron jobs hold the cron lane slot; inner operations must use nested to avoid deadlock.

10+

// Cron jobs hold the cron lane slot; inner operations need a dedicated lane

11+

// to avoid deadlock without widening shared nested flows.

1112

if (cleaned === CommandLane.Cron) {

12-

return CommandLane.Nested;

13+

return CommandLane.CronNested;

1314

}

1415

return cleaned ? cleaned : CommandLane.Main;

1516

}

Original file line numberDiff line numberDiff line change

@@ -82,15 +82,15 @@ describe("runCronIsolatedAgentTurn lane selection", () => {

8282

vi.resetModules();

8383

});

8484
85-

it("moves the cron lane to nested for embedded runs", async () => {

85+

it("moves the cron lane to cron-nested for embedded runs", async () => {

8686

await withTempCronHome(async (home) => {

87-

expect(await runLaneCase(home, "cron")).toBe("nested");

87+

expect(await runLaneCase(home, "cron")).toBe("cron-nested");

8888

});

8989

});

9090
91-

it("defaults missing lanes to nested for embedded runs", async () => {

91+

it("defaults missing lanes to cron-nested for embedded runs", async () => {

9292

await withTempCronHome(async (home) => {

93-

expect(await runLaneCase(home)).toBe("nested");

93+

expect(await runLaneCase(home)).toBe("cron-nested");

9494

});

9595

});

9696
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,3 @@

11

export { resolveFastModeState } from "../../agents/fast-mode.js";

2-

export { resolveNestedAgentLane } from "../../agents/lanes.js";

2+

export { resolveCronAgentLane } from "../../agents/lanes.js";

33

export { runEmbeddedPiAgent } from "../../agents/pi-embedded.js";

Original file line numberDiff line numberDiff line change

@@ -156,7 +156,7 @@ export function createCronPromptExecutor(params: {

156156

);

157157

return result;

158158

}

159-

const { resolveFastModeState, resolveNestedAgentLane, runEmbeddedPiAgent } =

159+

const { resolveCronAgentLane, resolveFastModeState, runEmbeddedPiAgent } =

160160

await loadCronEmbeddedRuntime();

161161

const currentChannelId = await resolveCurrentChannelTarget({

162162

channel: params.messageChannel,

@@ -183,7 +183,7 @@ export function createCronPromptExecutor(params: {

183183

config: params.cfgWithAgentDefaults,

184184

skillsSnapshot: params.skillsSnapshot,

185185

prompt: promptText,

186-

lane: resolveNestedAgentLane(params.lane),

186+

lane: resolveCronAgentLane(params.lane),

187187

provider: providerOverride,

188188

model: modelOverride,

189189

authProfileId: params.liveSelection.authProfileId,