From a3a6b6de96d05022596a19fb1b6c0445efe9796d Mon Sep 17 00:00:00 2001 From: Raja Subramanian Date: Sun, 21 Jun 2026 16:37:21 +0530 Subject: [PATCH 1/2] triviial: remove usused config. (#4611) noticed a config in deploy config while cleaning up some other usused config. small clean up. probably there is a bunch more that can be cleaned up, but doing a quick one as I noticed this. --- pkg/config/config.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index c77d7d241..4393f7f80 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -208,7 +208,6 @@ type RoomConfig struct { EnableRemoteUnmute bool `yaml:"enable_remote_unmute,omitempty"` PlayoutDelay PlayoutDelayConfig `yaml:"playout_delay,omitempty"` SyncStreams bool `yaml:"sync_streams,omitempty"` - CreateRoomEnabled bool `yaml:"create_room_enabled,omitempty"` CreateRoomTimeout time.Duration `yaml:"create_room_timeout,omitempty"` CreateRoomAttempts int `yaml:"create_room_attempts,omitempty"` // target room participant update batch chunk size in bytes @@ -434,7 +433,6 @@ var DefaultConfig = Config{ }, EmptyTimeout: 5 * 60, DepartureTimeout: 20, - CreateRoomEnabled: true, CreateRoomTimeout: 10 * time.Second, CreateRoomAttempts: 3, UpdateBatchTargetSize: 128 * 1024, From 13ce35fc8796a83a467f66b982ad8bd937861e61 Mon Sep 17 00:00:00 2001 From: CloudWebRTC Date: Mon, 22 Jun 2026 14:03:47 +0800 Subject: [PATCH 2/2] fix: Clear the enableStartAtDesiredQuality flags in MaybeExpireAcquireGrace. (#4613) --- pkg/sfu/forwarder.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/sfu/forwarder.go b/pkg/sfu/forwarder.go index 3bfae7d4b..398a2d2b7 100644 --- a/pkg/sfu/forwarder.go +++ b/pkg/sfu/forwarder.go @@ -330,6 +330,8 @@ func (f *Forwarder) MaybeExpireAcquireGrace() bool { return false } f.acquireDeadline = 0 + f.enableStartAtDesiredQuality = false + f.vls.SetEnableStartAtDesiredQuality(false) return !f.vls.GetCurrent().IsValid() }