From 1d5c75b25241b837b8080fe6318883b2c29c1f2c Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Fri, 10 Feb 2023 14:14:19 +0100 Subject: [PATCH] Fixing issue with scheduler sending single reservation --- src/common/scheduler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/scheduler.ts b/src/common/scheduler.ts index fccc769..5c91ac5 100644 --- a/src/common/scheduler.ts +++ b/src/common/scheduler.ts @@ -50,7 +50,7 @@ export const schedule = async ( } logger?.info('Reservation request can be performed now') - await reserve(reservation) + await reserve([reservation]) return { scheduledReservation: { reservation }, }