We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16b8d36 commit 1c95c07Copy full SHA for 1c95c07
1 file changed
src/server.c
@@ -2955,7 +2955,6 @@ sds genRedisInfoString(char *section) {
2955
time_t uptime = server.unixtime-server.stat_starttime;
2956
int j;
2957
struct rusage self_ru, c_ru;
2958
- unsigned long lol, bib;
2959
int allsections = 0, defsections = 0;
2960
int sections = 0;
2961
@@ -3034,6 +3033,7 @@ sds genRedisInfoString(char *section) {
3034
3033
3035
/* Clients */
3036
if (allsections || defsections || !strcasecmp(section,"clients")) {
+ unsigned long lol, bib;
3037
getClientsMaxBuffers(&lol,&bib);
3038
if (sections++) info = sdscat(info,"\r\n");
3039
info = sdscatprintf(info,
0 commit comments