From aa21b4b459b35142c9e833275d0ee43c58cd3211 Mon Sep 17 00:00:00 2001 From: Alex P Date: Mon, 8 Sep 2025 22:58:49 +0000 Subject: [PATCH] Updates: increase congestion treshold multiplier --- internal/audio/core_config_constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/audio/core_config_constants.go b/internal/audio/core_config_constants.go index 2f92319e..d54ef2e3 100644 --- a/internal/audio/core_config_constants.go +++ b/internal/audio/core_config_constants.go @@ -530,7 +530,7 @@ func DefaultAudioConfig() *AudioConfigConstants { // Graceful Degradation Configuration CongestionMildReductionFactor: 0.75, // Buffer reduction factor for mild congestion (0.75) CongestionModerateReductionFactor: 0.5, // Buffer reduction factor for moderate congestion (0.5) - CongestionThresholdMultiplier: 1.5, // Multiplier for congestion threshold calculations (increased to reduce false emergency mode triggers) + CongestionThresholdMultiplier: 10.0, // Multiplier for congestion threshold calculations (increased to reduce false emergency mode triggers) CongestionRecoveryTimeout: 5 * time.Second, // Timeout for congestion recovery (5 seconds) // Buffer Pool Cache Configuration