Delay room manager close to ensure correct DisconnectReason is sent (#806)

This commit is contained in:
David Zhao
2022-07-03 23:38:59 -07:00
committed by GitHub
parent 7c35184944
commit e30046f537
+3
View File
@@ -385,6 +385,9 @@ func (r *RoomManager) getOrCreateRoom(ctx context.Context, roomName livekit.Room
// manages an RTC session for a participant, runs on the RTC node
func (r *RoomManager) rtcSessionWorker(room *rtc.Room, participant types.LocalParticipant, requestSource routing.MessageSource) {
defer func() {
// give time for the participant to be closed with a proper reason.
// if participant is closed from here, we would be obscuring the real reason the participant is closed.
time.Sleep(2 * time.Second)
logger.Debugw("RTC session finishing",
"participant", participant.Identity(),
"pID", participant.ID(),