From 414e5f2c3c1c1281cef5d0095cc452a309c31e6c Mon Sep 17 00:00:00 2001 From: Thibault Le Ouay Date: Wed, 1 Jul 2026 09:07:15 +0200 Subject: [PATCH] workflow: move to http (#2331) --- apps/workflows/src/cron/checker.ts | 2 +- apps/workflows/src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/workflows/src/cron/checker.ts b/apps/workflows/src/cron/checker.ts index 40dbf7ab..dfdb5b32 100644 --- a/apps/workflows/src/cron/checker.ts +++ b/apps/workflows/src/cron/checker.ts @@ -51,7 +51,7 @@ export const isAuthorizedDomain = (url: string) => { const logger = getLogger("workflow"); const client = new CloudTasksClient({ - fallback: true, + fallback: "rest", projectId: env().GCP_PROJECT_ID, credentials: { client_email: env().GCP_CLIENT_EMAIL, diff --git a/apps/workflows/src/index.ts b/apps/workflows/src/index.ts index 9cd13dac..5bded409 100644 --- a/apps/workflows/src/index.ts +++ b/apps/workflows/src/index.ts @@ -100,7 +100,7 @@ await configure({ loggers: [ { category: "workflow", - lowestLevel: "debug", + lowestLevel: "warning", sinks: ["console"], }, { -- 2.51.2