Skip to content

Commit

Permalink
cluster: Fix message for net.core.somaxconn check (#2495)
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden authored Feb 10, 2025
1 parent de57b57 commit 42641df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cluster/operation/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
})
}
Expand Down

0 comments on commit 42641df

Please sign in to comment.