mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-08 00:42:55 +00:00
Move cron persistence to SQLite (#88285)
* refactor: move cron persistence to sqlite * fix: repair sqlite cron migration regressions * fix: move cron legacy migration to doctor * test: align cron sqlite migration fixtures * test: fix cron sqlite rebase gates * test: align cron sqlite runtime tests * test: fix doctor e2e migration mock * test: fix doctor shard e2e isolation * test: fix infra child-process mocks
This commit is contained in:
committed by
GitHub
parent
d11e82aeea
commit
005da57957
@@ -172,7 +172,15 @@ describe("Feishu Card Action Handler", () => {
|
||||
const event: FeishuCardActionEvent = {
|
||||
operator: { open_id: "u123", user_id: "uid1", union_id: "un1" },
|
||||
token: "tok1",
|
||||
action: { value: { text: "/ping" }, tag: "button" },
|
||||
action: {
|
||||
value: createFeishuCardInteractionEnvelope({
|
||||
k: "quick",
|
||||
a: "feishu.quick_actions.ping",
|
||||
q: "/ping",
|
||||
c: { u: "u123", h: "chat1", t: "group", e: Date.now() + 60_000 },
|
||||
}),
|
||||
tag: "button",
|
||||
},
|
||||
context: { open_id: "u123", user_id: "uid1", chat_id: "chat1" },
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user