refactor(server): new version check (#9555)

This commit is contained in:
Jason Rasmussen
2024-05-17 12:22:39 -04:00
committed by GitHub
parent 4807fc40a6
commit c03981ac1d
16 changed files with 257 additions and 102 deletions

View File

@@ -86,6 +86,9 @@ export const JOBS_TO_QUEUE: Record<JobName, QueueName> = {
// Notification
[JobName.SEND_EMAIL]: QueueName.NOTIFICATION,
[JobName.NOTIFY_SIGNUP]: QueueName.NOTIFICATION,
// Version check
[JobName.VERSION_CHECK]: QueueName.BACKGROUND_TASK,
};
@Instrumentation()