From 0d68d11af40e11da10ca624f2fcf5cd0299a5cc2 Mon Sep 17 00:00:00 2001 From: Collin Duncan 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 }, }