Skip to content

Commit

Permalink
feat: Set max-bridge-participants=80 by default. (#1187)
Browse files Browse the repository at this point in the history
* feat: Set max-bridge-participants=80 by default.

* squash: Update tests.
  • Loading branch information
bgrozev authored Nov 19, 2024
1 parent 84d3678 commit 9b815d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jicofo-selector/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jicofo {
// Configuration related to jitsi-videobridge
bridge {
// The maximum number of participants in a single conference to put on one bridge (use -1 for no maximum).
max-bridge-participants = -1
max-bridge-participants = 80
// The assumed maximum packet rate that a bridge can handle.
max-bridge-packet-rate = 50000
// The assumed average packet rate per participant.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class BridgeConfigTest : ShouldSpec() {
init {
MetaconfigSettings.cacheEnabled = false
context("with no config the defaults from reference.conf should be used") {
config.maxBridgeParticipants shouldBe -1
config.maxBridgeParticipants shouldBe 80
config.maxBridgePacketRatePps shouldBe 50000
config.averageParticipantPacketRatePps shouldBe 500
}
Expand Down

0 comments on commit 9b815d1

Please sign in to comment.