From fb22efd9e94a28200f36f18161f6df634d733d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 7 Nov 2024 17:29:00 +0100 Subject: [PATCH] Fix CalendarOngoingStaleJob being in wrong queue (#8385) Fix CalendarOngoingStaleJob being in the wrong queue (`MessageQueue.messagingQueue` instead of `MessageQueue.calendarQueue`) --- .../jobs/calendar-ongoing-stale.job.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/jobs/calendar-ongoing-stale.job.ts b/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/jobs/calendar-ongoing-stale.job.ts index 0ddd02960..c81a7d800 100644 --- a/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/jobs/calendar-ongoing-stale.job.ts +++ b/packages/twenty-server/src/modules/calendar/calendar-event-import-manager/jobs/calendar-ongoing-stale.job.ts @@ -18,7 +18,7 @@ export type CalendarOngoingStaleJobData = { }; @Processor({ - queueName: MessageQueue.messagingQueue, + queueName: MessageQueue.calendarQueue, scope: Scope.REQUEST, }) export class CalendarOngoingStaleJob {