Fix scheduled task page delivery unlock and notification links.
Memind CI / Test, build, and release guards (push) Failing after 5s

Finalize page delivery contracts after worker execution, fetch session messages via tkmindProxy, and append public page URLs to WeChat notifications.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
john
2026-07-31 09:06:07 +08:00
parent 6acd79e4fa
commit 005612029f
3 changed files with 97 additions and 4 deletions
+4
View File
@@ -11,6 +11,8 @@ export function startScheduledTaskWorker({
tkmindProxy = null,
sessionSnapshotService = null,
notificationDispatcher = null,
pool = null,
h5Root = null,
logger = console,
intervalMs = Number(process.env.H5_SCHEDULED_TASK_SCAN_INTERVAL_MS ?? 30_000),
maxAttempts = Number(process.env.H5_SCHEDULED_TASK_MAX_ATTEMPTS ?? 3),
@@ -70,6 +72,8 @@ export function startScheduledTaskWorker({
userAuth,
tkmindProxy,
sessionSnapshotService,
pool,
h5Root,
timeoutMs: executionTimeoutMs,
logger,
});