From 0493b175ea3ff384cf435d5e05404016a5826190 Mon Sep 17 00:00:00 2001 From: Matt Isenhower Date: Fri, 21 Oct 2022 10:03:36 -0700 Subject: [PATCH] Tweak cron schedule --- app/cron.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cron.mjs b/app/cron.mjs index ed0e42d..3babc13 100644 --- a/app/cron.mjs +++ b/app/cron.mjs @@ -5,7 +5,7 @@ import { sendTweets } from "./twitter/index.mjs"; export default function() { new CronJob('5,20,35,50 * * * *', warmCaches, null, true); - new CronJob('10 0,1,2,5,10,15,30,45 * * * *', async () => { + new CronJob('15 0,2,5,10,15,30,45 * * * *', async () => { await updateAll(); await sendTweets(); }, null, true);