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

推荐订阅源

V
V2EX
量子位
博客园 - 司徒正美
IT之家
IT之家
V
Visual Studio Blog
Apple Machine Learning Research
Apple Machine Learning Research
博客园_首页
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
Microsoft Security Blog
Microsoft Security Blog
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
GbyAI
GbyAI
Vercel News
Vercel News
B
Blog
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
小众软件
小众软件
罗磊的独立博客
博客园 - 叶小钗
雷峰网
雷峰网
Martin Fowler
Martin Fowler
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学

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): mark manual cron runs active (#78243) · opencl...
Feelw00 · 2026-05-11 · via Recent Commits to openclaw:main

@@ -7,6 +7,7 @@ import {

77

createRunningTaskRun,

88

failTaskRunByRunId,

99

} from "../../tasks/detached-task-runtime.js";

10+

import { clearCronJobActive, markCronJobActive } from "../active-jobs.js";

1011

import { createCronRunDiagnosticsFromError } from "../run-diagnostics.js";

1112

import { createCronExecutionId } from "../run-id.js";

1213

import type { CronJob, CronJobCreate, CronJobPatch } from "../types.js";

@@ -686,6 +687,7 @@ async function prepareManualRun(

686687

job,

687688

startedAt: preflight.now,

688689

});

690+

markCronJobActive(job.id);

689691

const executionJob = structuredClone(job);

690692

return {

691693

ok: true,

@@ -710,92 +712,96 @@ async function finishPreparedManualRun(

710712

const taskRunId = prepared.taskRunId;

711713

const runId = prepared.runId;

712714713-

let coreResult: Awaited<ReturnType<typeof executeJobCoreWithTimeout>>;

714715

try {

715-

coreResult = await executeJobCoreWithTimeout(state, executionJob);

716-

} catch (err) {

717-

coreResult = { status: "error", error: normalizeCronRunErrorText(err) };

718-

}

719-

const endedAt = state.deps.nowMs();

720-

tryFinishManualTaskRun(state, {

721-

taskRunId,

722-

coreResult,

723-

endedAt,

724-

});

725-726-

await locked(state, async () => {

727-

await ensureLoaded(state, { skipRecompute: true });

728-

const job = state.store?.jobs.find((entry) => entry.id === jobId);

729-

if (!job) {

730-

return;

716+

let coreResult: Awaited<ReturnType<typeof executeJobCoreWithTimeout>>;

717+

try {

718+

coreResult = await executeJobCoreWithTimeout(state, executionJob);

719+

} catch (err) {

720+

coreResult = { status: "error", error: normalizeCronRunErrorText(err) };

731721

}

722+

const endedAt = state.deps.nowMs();

723+

tryFinishManualTaskRun(state, {

724+

taskRunId,

725+

coreResult,

726+

endedAt,

727+

});

732728733-

const shouldDelete = applyJobResult(

734-

state,

735-

job,

736-

{

729+

await locked(state, async () => {

730+

await ensureLoaded(state, { skipRecompute: true });

731+

const job = state.store?.jobs.find((entry) => entry.id === jobId);

732+

if (!job) {

733+

return;

734+

}

735+736+

const shouldDelete = applyJobResult(

737+

state,

738+

job,

739+

{

740+

status: coreResult.status,

741+

error: coreResult.error,

742+

diagnostics: coreResult.diagnostics,

743+

delivered: coreResult.delivered,

744+

startedAt,

745+

endedAt,

746+

},

747+

{ preserveSchedule: mode === "force" },

748+

);

749+750+

emit(state, {

751+

jobId: job.id,

752+

action: "finished",

753+

job,

737754

status: coreResult.status,

738755

error: coreResult.error,

756+

summary: coreResult.summary,

739757

diagnostics: coreResult.diagnostics,

740758

delivered: coreResult.delivered,

741-

startedAt,

742-

endedAt,

743-

},

744-

{ preserveSchedule: mode === "force" },

745-

);

746-747-

emit(state, {

748-

jobId: job.id,

749-

action: "finished",

750-

job,

751-

status: coreResult.status,

752-

error: coreResult.error,

753-

summary: coreResult.summary,

754-

diagnostics: coreResult.diagnostics,

755-

delivered: coreResult.delivered,

756-

deliveryStatus: job.state.lastDeliveryStatus,

757-

deliveryError: job.state.lastDeliveryError,

758-

delivery: coreResult.delivery,

759-

sessionId: coreResult.sessionId,

760-

sessionKey: coreResult.sessionKey,

761-

runId,

762-

runAtMs: startedAt,

763-

durationMs: job.state.lastDurationMs,

764-

nextRunAtMs: job.state.nextRunAtMs,

765-

model: coreResult.model,

766-

provider: coreResult.provider,

767-

usage: coreResult.usage,

768-

});

759+

deliveryStatus: job.state.lastDeliveryStatus,

760+

deliveryError: job.state.lastDeliveryError,

761+

delivery: coreResult.delivery,

762+

sessionId: coreResult.sessionId,

763+

sessionKey: coreResult.sessionKey,

764+

runId,

765+

runAtMs: startedAt,

766+

durationMs: job.state.lastDurationMs,

767+

nextRunAtMs: job.state.nextRunAtMs,

768+

model: coreResult.model,

769+

provider: coreResult.provider,

770+

usage: coreResult.usage,

771+

});

769772770-

if (shouldDelete && state.store) {

771-

state.store.jobs = state.store.jobs.filter((entry) => entry.id !== job.id);

772-

emit(state, { jobId: job.id, action: "removed", job });

773-

}

773+

if (shouldDelete && state.store) {

774+

state.store.jobs = state.store.jobs.filter((entry) => entry.id !== job.id);

775+

emit(state, { jobId: job.id, action: "removed", job });

776+

}

774777775-

// Manual runs should not advance other due jobs without executing them.

776-

// Use maintenance-only recompute to repair missing values while

777-

// preserving existing past-due nextRunAtMs entries for future timer ticks.

778-

const postRunSnapshot = shouldDelete

779-

? null

780-

: {

781-

enabled: job.enabled,

782-

updatedAtMs: job.updatedAtMs,

783-

state: structuredClone(job.state),

784-

};

785-

const postRunRemoved = shouldDelete;

786-

// Isolated Telegram send can persist target writeback directly to disk.

787-

// Reload before final persist so manual `cron run` keeps those changes.

788-

await ensureLoaded(state, { forceReload: true, skipRecompute: true });

789-

mergeManualRunSnapshotAfterReload({

790-

state,

791-

jobId,

792-

snapshot: postRunSnapshot,

793-

removed: postRunRemoved,

778+

// Manual runs should not advance other due jobs without executing them.

779+

// Use maintenance-only recompute to repair missing values while

780+

// preserving existing past-due nextRunAtMs entries for future timer ticks.

781+

const postRunSnapshot = shouldDelete

782+

? null

783+

: {

784+

enabled: job.enabled,

785+

updatedAtMs: job.updatedAtMs,

786+

state: structuredClone(job.state),

787+

};

788+

const postRunRemoved = shouldDelete;

789+

// Isolated Telegram send can persist target writeback directly to disk.

790+

// Reload before final persist so manual `cron run` keeps those changes.

791+

await ensureLoaded(state, { forceReload: true, skipRecompute: true });

792+

mergeManualRunSnapshotAfterReload({

793+

state,

794+

jobId,

795+

snapshot: postRunSnapshot,

796+

removed: postRunRemoved,

797+

});

798+

recomputeNextRunsForMaintenance(state, { recomputeExpired: true });

799+

await persist(state);

800+

armTimer(state);

794801

});

795-

recomputeNextRunsForMaintenance(state, { recomputeExpired: true });

796-

await persist(state);

797-

armTimer(state);

798-

});

802+

} finally {

803+

clearCronJobActive(jobId);

804+

}

799805

}

800806801807

export async function run(