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

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

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): avoid gateway restart on setup timeout (#96396...
849261680 · 2026-06-26 · via Recent Commits to openclaw:main

@@ -1301,7 +1301,7 @@ describe("cron service timer regressions", () => {

13011301

}

13021302

});

130313031304-

it("notifies setup-timeout restart after startup catch-up finalization", async () => {

1304+

it("notifies setup timeout after startup catch-up finalization", async () => {

13051305

vi.useFakeTimers();

13061306

try {

13071307

const store = timerRegressionFixtures.makeStorePath();

@@ -1926,7 +1926,7 @@ describe("cron service timer regressions", () => {

19261926

expect(jobs.find((job) => job.id === second.id)?.state.lastStatus).toBe("ok");

19271927

});

192819281929-

it("requests one setup-timeout restart when a concurrent cron batch stalls before runners start", async () => {

1929+

it("sends one setup-timeout notification when a concurrent cron batch stalls before runners start", async () => {

19301930

vi.useFakeTimers();

19311931

try {

19321932

const store = timerRegressionFixtures.makeStorePath();

@@ -1990,7 +1990,7 @@ describe("cron service timer regressions", () => {

19901990

}

19911991

});

199219921993-

it("requests setup-timeout restart after a prior serial cron job completes", async () => {

1993+

it("sends setup-timeout notification after a prior serial cron job completes", async () => {

19941994

vi.useFakeTimers();

19951995

try {

19961996

const store = timerRegressionFixtures.makeStorePath();

@@ -2058,7 +2058,7 @@ describe("cron service timer regressions", () => {

20582058

}

20592059

});

206020602061-

it("requests setup-timeout restart when manual and scheduled runs both stall", async () => {

2061+

it("sends setup-timeout notification when manual and scheduled runs both stall", async () => {

20622062

vi.useFakeTimers();

20632063

try {

20642064

const store = timerRegressionFixtures.makeStorePath();

@@ -2128,7 +2128,7 @@ describe("cron service timer regressions", () => {

21282128

}

21292129

});

213021302131-

it("suppresses scheduled rearm after manual setup-timeout restart request", async () => {

2131+

it("rearms scheduled jobs after manual setup timeout notification", async () => {

21322132

vi.useFakeTimers();

21332133

try {

21342134

const store = timerRegressionFixtures.makeStorePath();

@@ -2179,8 +2179,8 @@ describe("cron service timer regressions", () => {

21792179

await vi.advanceTimersByTimeAsync(1);

2180218021812181

expect(onIsolatedAgentSetupTimeout).toHaveBeenCalledTimes(1);

2182-

expect(state.restartRecoveryPending).toBe(true);

2183-

expect(state.timer).toBeNull();

2182+

expect(state.restartRecoveryPending).toBe(false);

2183+

expect(state.timer).not.toBeNull();

21842184

expect(scheduledStarted).not.toHaveBeenCalled();

21852185

} finally {

21862186

vi.useRealTimers();

@@ -2352,7 +2352,7 @@ describe("cron service timer regressions", () => {

23522352

).toBe(replacementReservationMs);

23532353

});

235423542355-

it("stops an active scheduled batch from claiming more jobs after manual setup-timeout recovery", async () => {

2355+

it("continues an active scheduled batch after manual setup-timeout notification", async () => {

23562356

vi.useFakeTimers();

23572357

try {

23582358

const store = timerRegressionFixtures.makeStorePath();

@@ -2419,14 +2419,14 @@ describe("cron service timer regressions", () => {

24192419

await vi.advanceTimersByTimeAsync(60_100);

24202420

now += 60_100;

24212421

await manualRun;

2422-

expect(state.restartRecoveryPending).toBe(true);

2422+

expect(state.restartRecoveryPending).toBe(false);

2423242324242424

finishFirstScheduled.resolve();

24252425

await timerRun;

2426242624272427

const second = requireJob(state, secondScheduledJob.id);

24282428

expect(onIsolatedAgentSetupTimeout).toHaveBeenCalledTimes(1);

2429-

expect(secondScheduledStarted).not.toHaveBeenCalled();

2429+

expect(secondScheduledStarted).toHaveBeenCalledWith(secondScheduledJob.id);

24302430

expect(second.state.runningAtMs).toBeUndefined();

24312431

} finally {

24322432

vi.useRealTimers();

@@ -2794,7 +2794,7 @@ describe("cron service timer regressions", () => {

27942794

}

27952795

});

279627962797-

it("does not request setup-timeout restart for cron-nested lane contention", async () => {

2797+

it("does not notify setup timeout for cron-nested lane contention", async () => {

27982798

vi.useFakeTimers();

27992799

try {

28002800

const store = timerRegressionFixtures.makeStorePath();

@@ -2854,7 +2854,7 @@ describe("cron service timer regressions", () => {

28542854

}

28552855

});

285628562857-

it("does not notify setup-timeout restart for custom-session cron waits", async () => {

2857+

it("does not notify setup timeout for custom-session cron waits", async () => {

28582858

vi.useFakeTimers();

28592859

try {

28602860

const store = timerRegressionFixtures.makeStorePath();