redis-cli --stat: show LOAD when loading.

This commit is contained in:
antirez 2015-02-07 09:54:07 +01:00
parent 8696874d75
commit 05841a6386

View File

@ -1945,6 +1945,7 @@ static void statMode(void) {
/* Children */ /* Children */
aux = getLongInfoField(reply->str,"bgsave_in_progress"); aux = getLongInfoField(reply->str,"bgsave_in_progress");
aux |= getLongInfoField(reply->str,"aof_rewrite_in_progress") << 1; aux |= getLongInfoField(reply->str,"aof_rewrite_in_progress") << 1;
aux |= getLongInfoField(reply->str,"loading") << 2;
switch(aux) { switch(aux) {
case 0: break; case 0: break;
case 1: case 1:
@ -1956,6 +1957,9 @@ static void statMode(void) {
case 3: case 3:
printf("SAVE+AOF"); printf("SAVE+AOF");
break; break;
case 4:
printf("LOAD");
break;
} }
printf("\n"); printf("\n");