From 1dce6918c24c564982d264a66af55b2679715a29 Mon Sep 17 00:00:00 2001 From: Li Yi <49734070+liyiberkeley@users.noreply.github.com> Date: Wed, 9 Sep 2020 17:29:23 -0700 Subject: [PATCH] fix sysctl.sh quotes which are incompatible with sysctl (#10446) --- docs/deployment/kernel-tuning/sysctl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deployment/kernel-tuning/sysctl.sh b/docs/deployment/kernel-tuning/sysctl.sh index 55f23d375..51e00d73f 100755 --- a/docs/deployment/kernel-tuning/sysctl.sh +++ b/docs/deployment/kernel-tuning/sysctl.sh @@ -33,8 +33,8 @@ net.core.wmem_default = 4194304 net.core.optmem_max = 4194304 # increase memory thresholds to prevent packet dropping: -net.ipv4.tcp_rmem = "4096 87380 4194304" -net.ipv4.tcp_wmem = "4096 65536 4194304" +net.ipv4.tcp_rmem = 4096 87380 4194304 +net.ipv4.tcp_wmem = 4096 65536 4194304 # enable low latency mode for TCP: net.ipv4.tcp_low_latency = 1