From 934eea59207d36997b9d8eca6f7fbf6e3524efcf Mon Sep 17 00:00:00 2001 From: Nafis Zaman Date: Fri, 16 Aug 2024 13:09:12 -0700 Subject: [PATCH] Update code to test artifact deletion permissions --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index eb2e42f..d36d4c4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,5 +2,5 @@ import { onSchedule } from "firebase-functions/v2/scheduler"; import * as logger from "firebase-functions/logger"; export const unconsentedUserCleanup = onSchedule("every 5 mins", async () => { - logger.info("Hello from function unconsentedUserCleanup 2!", { structuredData: true }); + logger.info("Hello from function unconsentedUserCleanup 3!", { structuredData: true }); });