Fixing issue with scheduler sending single reservation

This commit is contained in:
Collin Duncan 2023-02-10 14:14:19 +01:00
parent 3ae0e0b782
commit 1d5c75b252
No known key found for this signature in database

View file

@ -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 },
}