From 85a182b7f2b050e77798ef972cd9b37601e46bc6 Mon Sep 17 00:00:00 2001 From: James Grugett Date: Tue, 17 May 2022 16:53:35 -0400 Subject: [PATCH] Decrease feed update interval --- 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 3c497b1f..be58bf01 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 5 minutes') + .schedule('every 15 minutes') .onRun(async () => { const userBatches = await getUserBatches()