From 9bb78787b17907354cc60ad73bd738560233c799 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Wed, 12 Oct 2022 10:48:11 +0100 Subject: [PATCH] Only set default_qdisc in base role to prevent yoyo --- roles/base.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/roles/base.rb b/roles/base.rb index 879a11a3d..2da7e4e24 100644 --- a/roles/base.rb +++ b/roles/base.rb @@ -74,10 +74,9 @@ default_attributes( } }, :default_qdisc => { - :comment => "Use fq as the default queuing discipline and cubic for congestion control", + :comment => "Use fq as the default queuing discipline", :parameters => { - "net.core.default_qdisc" => "fq", - "net.ipv4.tcp_congestion_control" => "cubic" + "net.core.default_qdisc" => "fq" } }, :tune_cpu_scheduler => { -- 2.39.5