mirror of https://mirror.osredm.com/root/redis.git
redis-cli --stat: show LOAD when loading.
This commit is contained in:
parent
8696874d75
commit
05841a6386
|
@ -1945,6 +1945,7 @@ static void statMode(void) {
|
|||
/* Children */
|
||||
aux = getLongInfoField(reply->str,"bgsave_in_progress");
|
||||
aux |= getLongInfoField(reply->str,"aof_rewrite_in_progress") << 1;
|
||||
aux |= getLongInfoField(reply->str,"loading") << 2;
|
||||
switch(aux) {
|
||||
case 0: break;
|
||||
case 1:
|
||||
|
@ -1956,6 +1957,9 @@ static void statMode(void) {
|
|||
case 3:
|
||||
printf("SAVE+AOF");
|
||||
break;
|
||||
case 4:
|
||||
printf("LOAD");
|
||||
break;
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
|
|
Loading…
Reference in New Issue