Skip to content

Commit

Permalink
Fix syntax for function schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
navzam committed Nov 5, 2024
1 parent dd7612a commit 8551efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ initializeApp();

const QUERY_PAGE_SIZE = 100;

export const unconsentedUserCleanup = onSchedule("every 1 hour", async (event) => {
export const unconsentedUserCleanup = onSchedule("every 1 hours", async (event) => {
logger.info('Starting cleanup of unconsented users');

const firestore = getFirestore();
Expand Down

0 comments on commit 8551efc

Please sign in to comment.