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

推荐订阅源

Y
Y Combinator Blog
MyScale Blog
MyScale Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
N
Netflix TechBlog - Medium
V
V2EX
MongoDB | Blog
MongoDB | Blog
Microsoft Security Blog
Microsoft Security Blog
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
H
Help Net Security
D
DataBreaches.Net
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
C
Check Point 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): tolerate legacy flat schedule identity · openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -1,34 +1,91 @@

1-

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

1+

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

223-

function schedulePayload(

4-

schedule: CronSchedule,

3+

function readString(record: Record<string, unknown>, key: string): string | undefined {

4+

const value = record[key];

5+

return typeof value === "string" && value.trim() ? value.trim() : undefined;

6+

}

7+8+

function readNumber(record: Record<string, unknown>, key: string): number | undefined {

9+

const value = record[key];

10+

return typeof value === "number" && Number.isFinite(value) ? value : undefined;

11+

}

12+13+

function schedulePayloadFromRecord(

14+

schedule: Record<string, unknown>,

515

):

616

| { kind: "at"; at: string }

717

| { kind: "every"; everyMs: number; anchorMs?: number }

8-

| { kind: "cron"; expr: string; tz?: string; staggerMs?: number } {

9-

switch (schedule.kind) {

10-

case "at":

11-

return { kind: "at", at: schedule.at };

12-

case "every":

13-

return { kind: "every", everyMs: schedule.everyMs, anchorMs: schedule.anchorMs };

14-

case "cron":

15-

return {

16-

kind: "cron",

17-

expr: schedule.expr,

18-

tz: schedule.tz,

19-

staggerMs: schedule.staggerMs,

20-

};

18+

| { kind: "cron"; expr: string; tz?: string; staggerMs?: number }

19+

| undefined {

20+

const rawKind = readString(schedule, "kind")?.toLowerCase();

21+

const expr = readString(schedule, "expr") ?? readString(schedule, "cron");

22+

const at = readString(schedule, "at");

23+

const atMs = readNumber(schedule, "atMs");

24+

const everyMs = readNumber(schedule, "everyMs");

25+

const anchorMs = readNumber(schedule, "anchorMs");

26+

const tz = readString(schedule, "tz");

27+

const staggerMs = readNumber(schedule, "staggerMs");

28+

const kind =

29+

rawKind === "at" || rawKind === "every" || rawKind === "cron"

30+

? rawKind

31+

: at || atMs !== undefined

32+

? "at"

33+

: everyMs !== undefined

34+

? "every"

35+

: expr

36+

? "cron"

37+

: undefined;

38+39+

if (kind === "at") {

40+

return at

41+

? { kind: "at", at }

42+

: atMs !== undefined

43+

? { kind: "at", at: String(atMs) }

44+

: undefined;

2145

}

22-

throw new Error("Unsupported cron schedule kind");

46+

if (kind === "every" && everyMs !== undefined) {

47+

return { kind: "every", everyMs, anchorMs };

48+

}

49+

if (kind === "cron" && expr) {

50+

return { kind: "cron", expr, tz, staggerMs };

51+

}

52+

return undefined;

53+

}

54+55+

function resolveSchedulePayload(

56+

job: { schedule?: unknown } & Record<string, unknown>,

57+

): ReturnType<typeof schedulePayloadFromRecord> {

58+

if (job.schedule && typeof job.schedule === "object" && !Array.isArray(job.schedule)) {

59+

return schedulePayloadFromRecord(job.schedule as Record<string, unknown>);

60+

}

61+

return schedulePayloadFromRecord(job);

2362

}

24632564

export function cronScheduleIdentity(

2665

job: Pick<CronJob, "schedule"> & { enabled?: boolean },

2766

): string {

67+

const schedule = resolveSchedulePayload(job as unknown as Record<string, unknown>);

68+

if (!schedule) {

69+

throw new Error("Unsupported cron schedule kind");

70+

}

2871

return JSON.stringify({

2972

version: 1,

3073

enabled: job.enabled ?? true,

31-

schedule: schedulePayload(job.schedule),

74+

schedule,

75+

});

76+

}

77+78+

export function tryCronScheduleIdentity(

79+

job: { schedule?: unknown; enabled?: unknown } & Record<string, unknown>,

80+

): string | undefined {

81+

const schedule = resolveSchedulePayload(job);

82+

if (!schedule) {

83+

return undefined;

84+

}

85+

return JSON.stringify({

86+

version: 1,

87+

enabled: typeof job.enabled === "boolean" ? job.enabled : true,

88+

schedule,

3289

});

3390

}

3491