mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 08:38:27 -05:00
Another fix for MIGRATE.
This commit is contained in:
parent
84e5684bca
commit
12e91892a0
@ -1586,7 +1586,7 @@ void migrateCommand(redisClient *c) {
|
|||||||
int fd;
|
int fd;
|
||||||
long timeout;
|
long timeout;
|
||||||
long dbid;
|
long dbid;
|
||||||
long long ttl;
|
long long ttl, expireat;
|
||||||
robj *o;
|
robj *o;
|
||||||
rio cmd, payload;
|
rio cmd, payload;
|
||||||
|
|
||||||
@ -1624,13 +1624,16 @@ void migrateCommand(redisClient *c) {
|
|||||||
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,"SELECT",6));
|
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,"SELECT",6));
|
||||||
redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,dbid));
|
redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,dbid));
|
||||||
|
|
||||||
ttl = getExpire(c->db,c->argv[3])-mstime();
|
expireat = getExpire(c->db,c->argv[3]);
|
||||||
|
if (expireat != -1) {
|
||||||
|
ttl = expireat-mstime();
|
||||||
if (ttl < 1) ttl = 1;
|
if (ttl < 1) ttl = 1;
|
||||||
|
}
|
||||||
redisAssertWithInfo(c,NULL,rioWriteBulkCount(&cmd,'*',4));
|
redisAssertWithInfo(c,NULL,rioWriteBulkCount(&cmd,'*',4));
|
||||||
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,"RESTORE",7));
|
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,"RESTORE",7));
|
||||||
redisAssertWithInfo(c,NULL,c->argv[3]->encoding == REDIS_ENCODING_RAW);
|
redisAssertWithInfo(c,NULL,c->argv[3]->encoding == REDIS_ENCODING_RAW);
|
||||||
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,c->argv[3]->ptr,sdslen(c->argv[3]->ptr)));
|
redisAssertWithInfo(c,NULL,rioWriteBulkString(&cmd,c->argv[3]->ptr,sdslen(c->argv[3]->ptr)));
|
||||||
redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,(ttl == -1) ? 0 : ttl));
|
redisAssertWithInfo(c,NULL,rioWriteBulkLongLong(&cmd,(expireat==-1) ? 0 : ttl));
|
||||||
|
|
||||||
/* Finally the last argument that is the serailized object payload
|
/* Finally the last argument that is the serailized object payload
|
||||||
* in the DUMP format. */
|
* in the DUMP format. */
|
||||||
|
Loading…
Reference in New Issue
Block a user