Commit be88c0b1 authored by antirez's avatar antirez
Browse files

Rename INFO CLIENT max buffers field names for correctness.

They are actually delayed a few seconds, so let's call them "recent".
parent 0cf3794e
...@@ -3087,8 +3087,8 @@ sds genRedisInfoString(char *section) { ...@@ -3087,8 +3087,8 @@ sds genRedisInfoString(char *section) {
info = sdscatprintf(info, info = sdscatprintf(info,
"# Clients\r\n" "# Clients\r\n"
"connected_clients:%lu\r\n" "connected_clients:%lu\r\n"
"client_max_input_buffer:%zu\r\n" "client_recent_max_input_buffer:%zu\r\n"
"client_max_output_buffer:%zu\r\n" "client_recent_max_output_buffer:%zu\r\n"
"blocked_clients:%d\r\n", "blocked_clients:%d\r\n",
listLength(server.clients)-listLength(server.slaves), listLength(server.clients)-listLength(server.slaves),
maxin, maxout, maxin, maxout,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment