From 18e0fe6a64f422b72610954bdecc9e48b72b57eb Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Thu, 10 Apr 2025 12:42:28 +0200 Subject: [PATCH] backend: Comment out departureTimeout and add notes regarding LiveKit bug --- backend/src/services/room.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/src/services/room.service.ts b/backend/src/services/room.service.ts index c8a154f..9644d22 100644 --- a/backend/src/services/room.service.ts +++ b/backend/src/services/room.service.ts @@ -91,8 +91,10 @@ export class RoomService { roomOptions: MeetRoomHelper.toOpenViduOptions(meetRoom) }), //TODO: Uncomment this when bug in LiveKit is fixed + // When it is defined, the room will be closed although there are participants // emptyTimeout: ms('20s') / 1000, - departureTimeout: ms('20s') / 1000 + // !FIXME: When this is defined, the room will be closed although there are participants + // departureTimeout: ms('20s') / 1000 // maxParticipants: maxParticipants || undefined, };