Skip to content

Commit 0bc3754

Browse files
committed
re-schedule teamv3 upgrade job
1 parent e11964f commit 0bc3754

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

apps/workers/src/workers/schedule.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ export async function setupSchedules() {
5959
{ opts: { attempts: 1 } },
6060
)
6161

62-
// Every day at 12:45 PM UTC - Upgrade Hobby users to HobbyV3
62+
// Every day at 14:30 PM UTC - Upgrade Hobby users to HobbyV3
6363
await maintenanceQueue.upsertJobScheduler(
6464
'upgradeHobbyUsersToV3Job',
65-
{ pattern: '45 12 * * *' },
65+
{ pattern: '30 14 * * *' },
6666
{ opts: { attempts: 1 } },
6767
)
6868

69-
// Every day at 12:10 PM UTC - Upgrade TeamV2 users to TeamV3
69+
// Every day at 14:30 PM UTC - Upgrade TeamV2 users to TeamV3
7070
await maintenanceQueue.upsertJobScheduler(
7171
'upgradeTeamV2UsersToV3Job',
72-
{ pattern: '10 12 * * *' },
72+
{ pattern: '30 14 * * *' },
7373
{ opts: { attempts: 1 } },
7474
)
7575
}

0 commit comments

Comments
 (0)