diff --git a/src/cron.ts b/src/cron.ts index 1e08fdb..0085c59 100644 --- a/src/cron.ts +++ b/src/cron.ts @@ -14,4 +14,4 @@ async function cleanupEvents() { console.log(`Deleted ${result?.numDeletedRows ?? 0} events.`); } -cron.hourly(cleanupEvents); +cron.every15Minute(cleanupEvents);