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 }); });