Sentinel: removed useless flag var from INFO-CACHE.
This commit is contained in:
parent
7576a27d58
commit
0422321617
@ -2797,12 +2797,10 @@ void sentinelCommand(redisClient *c) {
|
|||||||
dictType copy_keeper = instancesDictType;
|
dictType copy_keeper = instancesDictType;
|
||||||
copy_keeper.valDestructor = NULL;
|
copy_keeper.valDestructor = NULL;
|
||||||
dict *masters_local = NULL;
|
dict *masters_local = NULL;
|
||||||
int needs_cleanup = 0;
|
|
||||||
if (c->argc == 2) {
|
if (c->argc == 2) {
|
||||||
masters_local = sentinel.masters;
|
masters_local = sentinel.masters;
|
||||||
} else {
|
} else {
|
||||||
masters_local = dictCreate(©_keeper, NULL);
|
masters_local = dictCreate(©_keeper, NULL);
|
||||||
needs_cleanup = 1;
|
|
||||||
|
|
||||||
for (int i = 2; i < c->argc; i++) {
|
for (int i = 2; i < c->argc; i++) {
|
||||||
sentinelRedisInstance *ri;
|
sentinelRedisInstance *ri;
|
||||||
@ -2841,7 +2839,7 @@ void sentinelCommand(redisClient *c) {
|
|||||||
dictReleaseIterator(sdi);
|
dictReleaseIterator(sdi);
|
||||||
}
|
}
|
||||||
dictReleaseIterator(di);
|
dictReleaseIterator(di);
|
||||||
if (needs_cleanup) dictRelease(masters_local);
|
if (masters_local != sentinel.masters) dictRelease(masters_local);
|
||||||
} else {
|
} else {
|
||||||
addReplyErrorFormat(c,"Unknown sentinel subcommand '%s'",
|
addReplyErrorFormat(c,"Unknown sentinel subcommand '%s'",
|
||||||
(char*)c->argv[1]->ptr);
|
(char*)c->argv[1]->ptr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user