diff --git a/backend/src/queues/integrations/syncSecretsToThirdPartyServices.ts b/backend/src/queues/integrations/syncSecretsToThirdPartyServices.ts index 6d998e31f..7de760cd9 100644 --- a/backend/src/queues/integrations/syncSecretsToThirdPartyServices.ts +++ b/backend/src/queues/integrations/syncSecretsToThirdPartyServices.ts @@ -56,6 +56,10 @@ syncSecretsToThirdPartyServices.process(async (job: Job) => { } }) +syncSecretsToThirdPartyServices.on("error", (error) => { + console.log("QUEUE ERROR:", error) +}) + export const syncSecretsToActiveIntegrationsQueue = (jobDetails: TSyncSecretsToThirdPartyServices) => { syncSecretsToThirdPartyServices.add(jobDetails, { attempts: 5,