Skip to content

Commit 98e5bf0

Browse files
committed
Merge pull request #569 from sgotti/proxy_fix_keepalive_error_message
proxy: fix keepalive error message
2 parents 0d33a84 + 4f1fb20 commit 98e5bf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/proxy/cmd/proxy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -356,10 +356,10 @@ func proxy(c *cobra.Command, args []string) {
356356
log.Fatalf("tcp keepalive idle value must be greater or equal to 0")
357357
}
358358
if cfg.keepAliveCount < 0 {
359-
log.Fatalf("tcp keepalive idle value must be greater or equal to 0")
359+
log.Fatalf("tcp keepalive count value must be greater or equal to 0")
360360
}
361361
if cfg.keepAliveInterval < 0 {
362-
log.Fatalf("tcp keepalive idle value must be greater or equal to 0")
362+
log.Fatalf("tcp keepalive interval value must be greater or equal to 0")
363363
}
364364

365365
uid := common.UID()

0 commit comments

Comments
 (0)