From dfd3dade00b3a2ed16461855bd5da782147695c1 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Tue, 22 Mar 2022 22:07:01 -0700 Subject: [PATCH] Disallow pause by default (#554) --- pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 17bbd0490..641ca8244 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -197,7 +197,7 @@ func NewConfig(confString string, c *cli.Context) (*Config, error) { }, CongestionControl: CongestionControlConfig{ Enabled: true, - AllowPause: true, + AllowPause: false, ProbeMode: CongestionControlProbeModePadding, }, },