Commit d815289d authored by antirez's avatar antirez
Browse files

Don't try to bind the source address for MIGRATE

Related to issues #2609 and #2612.
parent f58d67b0
...@@ -4486,8 +4486,8 @@ migrateCachedSocket* migrateGetSocket(redisClient *c, robj *host, robj *port, lo ...@@ -4486,8 +4486,8 @@ migrateCachedSocket* migrateGetSocket(redisClient *c, robj *host, robj *port, lo
} }
/* Create the socket */ /* Create the socket */
fd = anetTcpNonBlockBindConnect(server.neterr,c->argv[1]->ptr, fd = anetTcpNonBlockConnect(server.neterr,c->argv[1]->ptr,
atoi(c->argv[2]->ptr),REDIS_BIND_ADDR); atoi(c->argv[2]->ptr));
if (fd == -1) { if (fd == -1) {
sdsfree(name); sdsfree(name);
addReplyErrorFormat(c,"Can't connect to target node: %s", addReplyErrorFormat(c,"Can't connect to target node: %s",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment