Skip to content

Commit

Permalink
Disable staging and prod cronjobs (#1056)
Browse files Browse the repository at this point in the history
  • Loading branch information
Archinowsk authored Sep 9, 2024
1 parent a8206e0 commit 4da627e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shared/config/serverConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand All @@ -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,
Expand Down

0 comments on commit 4da627e

Please sign in to comment.