From 4bb532b281b1c2f0ee9975af52c7c87a3d415a29 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:26:56 +0200 Subject: [PATCH] Accidentally disabled the queue! Whoopsies --- src/reservations/controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reservations/controller.ts b/src/reservations/controller.ts index cc84050..8e5a8b9 100644 --- a/src/reservations/controller.ts +++ b/src/reservations/controller.ts @@ -111,7 +111,7 @@ export class ReservationsController { return 'Reservation saved' } this.loggerService.debug('Reservation is available for reservation') - // await this.reservationsQueue.add(reservation) + await this.reservationsQueue.add(reservation) return 'Reservation queued' }