From 9fc44b88a42515801d2f60603cf2d2cc6a72f933 Mon Sep 17 00:00:00 2001 From: Nafis Zaman Date: Fri, 16 Aug 2024 11:22:11 -0700 Subject: [PATCH] Run function every 5 mins for testing --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a5da3ff..de0b820 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ import { onSchedule } from "firebase-functions/v2/scheduler"; import * as logger from "firebase-functions/logger"; -export const testFunction2 = onSchedule("every hour", async () => { +export const testFunction2 = onSchedule("every 5 mins", async () => { logger.info("Hello functions 2!", { structuredData: true }); });