Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 72f5326

Browse files
committedJan 25, 2016
Fix merge issues with 3.2 backports.
1 parent 53c9c29 commit 72f5326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/cluster.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -4027,7 +4027,7 @@ void clusterCommand(redisClient *c) {
40274027
/* CLUSTER BUMPEPOCH */
40284028
int retval = clusterBumpConfigEpochWithoutConsensus();
40294029
sds reply = sdscatprintf(sdsempty(),"+%s %llu\r\n",
4030-
(retval == C_OK) ? "BUMPED" : "STILL",
4030+
(retval == REDIS_OK) ? "BUMPED" : "STILL",
40314031
(unsigned long long) myself->configEpoch);
40324032
addReplySds(c,reply);
40334033
} else if (!strcasecmp(c->argv[1]->ptr,"info") && c->argc == 2) {
@@ -4645,7 +4645,7 @@ void migrateCommand(redisClient *c) {
46454645
}
46464646

46474647
/* Sanity check */
4648-
if (getLongFromObjectOrReply(c,c->argv[5],&timeout,NULL) != REDIS__OK ||
4648+
if (getLongFromObjectOrReply(c,c->argv[5],&timeout,NULL) != REDIS_OK ||
46494649
getLongFromObjectOrReply(c,c->argv[4],&dbid,NULL) != REDIS_OK)
46504650
{
46514651
return;

0 commit comments

Comments
 (0)
Please sign in to comment.