mirror of
https://github.com/fluencelabs/redis
synced 2025-04-05 17:21:03 +00:00
Sentinel: removed mem leak and useless code.
This commit is contained in:
parent
1ca56ea796
commit
489d889726
@ -2669,14 +2669,6 @@ void sentinelAskMasterStateToOtherSentinels(sentinelRedisInstance *master, int f
|
|||||||
dictIterator *di;
|
dictIterator *di;
|
||||||
dictEntry *de;
|
dictEntry *de;
|
||||||
|
|
||||||
/* Vote for myself if I see the master is already in ODOWN state. */
|
|
||||||
if (master->flags & SRI_O_DOWN) {
|
|
||||||
uint64_t leader_epoch;
|
|
||||||
|
|
||||||
sentinelVoteLeader(master,sentinel.current_epoch,server.runid,
|
|
||||||
&leader_epoch);
|
|
||||||
}
|
|
||||||
|
|
||||||
di = dictGetIterator(master->sentinels);
|
di = dictGetIterator(master->sentinels);
|
||||||
while((de = dictNext(di)) != NULL) {
|
while((de = dictNext(di)) != NULL) {
|
||||||
sentinelRedisInstance *ri = dictGetVal(de);
|
sentinelRedisInstance *ri = dictGetVal(de);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user