]> git.saurik.com Git - redis.git/commitdiff
MIGRATE: fix default timeout to 1000 milliseconds.
authorantirez <antirez@gmail.com>
Mon, 12 Nov 2012 14:04:54 +0000 (15:04 +0100)
committerantirez <antirez@gmail.com>
Mon, 12 Nov 2012 17:58:23 +0000 (18:58 +0100)
When a timeout <= 0 is provided we set a default timeout of 1 second.
It was set to 1 millisecond for an error resulting from a recent change.

src/migrate.c

index be1ea9203ca4385e94519d30a716bc9c4faf6629..1dc9a753f93de869c92eddea78df4d2a428061be 100644 (file)
@@ -139,7 +139,7 @@ void migrateCommand(redisClient *c) {
         return;
     if (getLongFromObjectOrReply(c,c->argv[4],&dbid,NULL) != REDIS_OK)
         return;
-    if (timeout <= 0) timeout = 1;
+    if (timeout <= 0) timeout = 1000;
 
     /* Check if the key is here. If not we reply with success as there is
      * nothing to migrate (for instance the key expired in the meantime), but