From 4da627e91a83fe52f97a1c665a46d9e472d09348 Mon Sep 17 00:00:00 2001 From: Arttu Hanska Date: Mon, 9 Sep 2024 21:28:56 +0300 Subject: [PATCH] Disable staging and prod cronjobs (#1056) --- shared/config/serverConfig.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/config/serverConfig.ts b/shared/config/serverConfig.ts index 3808fe388..296231e64 100644 --- a/shared/config/serverConfig.ts +++ b/shared/config/serverConfig.ts @@ -91,14 +91,14 @@ const prodConfig = { useTestTime: false, // Program update cron - autoUpdateProgramEnabled: true, + autoUpdateProgramEnabled: false, programUpdateInterval: `5,10,20,25,35,40,50,55 * * * *`, // Program update updateProgramItemPopularityEnabled: true, // Attendee assign cron - autoAssignAttendeesEnabled: true, + autoAssignAttendeesEnabled: false, autoAssignInterval: `0,15,30,45 * * * *`, autoAssignDelay: 1000 * 5, }; @@ -119,11 +119,11 @@ const stagingConfig = { useTestTime: true, // Program update cron - autoUpdateProgramEnabled: true, + autoUpdateProgramEnabled: false, programUpdateInterval: `5,10,20,25,35,40,50,55 * * * *`, // Program update - updateProgramItemPopularityEnabled: false, + updateProgramItemPopularityEnabled: true, // Attendee assign cron autoAssignAttendeesEnabled: false,