Skip to content

Commit

Permalink
adjusted queues for timezone
Browse files Browse the repository at this point in the history
  • Loading branch information
omranjamal committed Oct 4, 2024
1 parent 09b04c9 commit 3cc55ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/jonogon-core/src/api/queues/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ export async function initQueues() {
{
jobId: 'detect-milestone',
repeat: {
// 6pm every day
cron: '0 18 * * *',
// 6pm every day (GMT+6)
cron: '0 12 * * *',
},
},
);
Expand All @@ -18,8 +18,8 @@ export async function initQueues() {
{
jobId: 'aggregate-notifications',
repeat: {
// 8pm every day
cron: '0 20 * * *',
// 8pm every day (GMT+6)
cron: '0 14 * * *',
},
},
);
Expand Down

0 comments on commit 3cc55ad

Please sign in to comment.