mirror of https://mirror.osredm.com/root/redis.git
Fix a PSYNC bug caused by a variable name typo.
This commit is contained in:
parent
610224d0d0
commit
aa05128f51
|
@ -255,7 +255,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) {
|
||||||
aux[len+1] = '\r';
|
aux[len+1] = '\r';
|
||||||
aux[len+2] = '\n';
|
aux[len+2] = '\n';
|
||||||
feedReplicationBacklog(aux,len+3);
|
feedReplicationBacklog(aux,len+3);
|
||||||
feedReplicationBacklogWithObject(argv[j]);
|
feedReplicationBacklogWithObject(argv[i]);
|
||||||
feedReplicationBacklogWithObject(shared.crlf);
|
feedReplicationBacklogWithObject(shared.crlf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue