From a2d8d0fb75fa4e151f326621604ac383dda5b645 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Mon, 20 Jan 2025 16:09:21 +0100 Subject: [PATCH] cluster: Fix message for net.core.somaxconn check --- pkg/cluster/operation/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cluster/operation/check.go b/pkg/cluster/operation/check.go index f4ca75b764..cc2bb75d87 100644 --- a/pkg/cluster/operation/check.go +++ b/pkg/cluster/operation/check.go @@ -469,7 +469,7 @@ func CheckKernelParameters(opt *CheckOptions, p []byte) []*CheckResult { if val < 32768 { results = append(results, &CheckResult{ Name: CheckNameSysctl, - Err: fmt.Errorf("net.core.somaxconn = %d, should be greater than 32768", val), + Err: fmt.Errorf("net.core.somaxconn = %d, should 32768 or greater", val), Msg: "net.core.somaxconn = 32768", }) }