From 2b13b1adb723a8b12ff731023a8ef49b7e48b019 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Mon, 23 May 2022 15:29:15 -0500 Subject: [PATCH] Update activity feed every hour to decrease cost --- functions/src/update-feed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/update-feed.ts b/functions/src/update-feed.ts index 6c58970a..104473c1 100644 --- a/functions/src/update-feed.ts +++ b/functions/src/update-feed.ts @@ -42,7 +42,7 @@ const getUserBatches = async () => { } export const updateFeed = functions.pubsub - .schedule('every 15 minutes') + .schedule('every 60 minutes') .onRun(async () => { const userBatches = await getUserBatches()