diff options
author | Vladislav Vaintroub <wlad@mariadb.com> | 2020-04-03 12:33:31 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@mariadb.com> | 2020-04-03 12:49:50 +0200 |
commit | fbef428645e01113521824c2eb0a42fe4163699c (patch) | |
tree | 395bb2e0d4036117fe66404d76c48b5a0c5cb8cf /sql/sys_vars.cc | |
parent | 0932c5804d720e1e1ee1d632ad424883dddfeea0 (diff) | |
download | mariadb-git-fbef428645e01113521824c2eb0a42fe4163699c.tar.gz |
MDEV-22137 correct documentation of tcp_keepalive_time system variable
Diffstat (limited to 'sql/sys_vars.cc')
-rw-r--r-- | sql/sys_vars.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index 824b6583404..f132395b7d2 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -5679,7 +5679,7 @@ vio_keepalive_opts opt_vio_keepalive; static Sys_var_int Sys_keepalive_time( "tcp_keepalive_time", - "Timeout, in milliseconds, with no activity until the first TCP keep-alive packet is sent." + "Timeout, in seconds, with no activity until the first TCP keep-alive packet is sent." "If set to 0, system dependent default is used.", AUTO_SET GLOBAL_VAR(opt_vio_keepalive.idle), CMD_LINE(REQUIRED_ARG), VALID_RANGE(0, INT_MAX32/1000), |