Binding multiple IPs done properly with multiple sockets.

This commit is contained in:
antirez
2013-07-05 11:47:20 +02:00
parent 00063bea33
commit fc022ca300
4 changed files with 59 additions and 22 deletions

View File

@ -962,8 +962,7 @@ int rewriteAppendOnlyFileBackground(void) {
char tmpfile[256];
/* Child */
if (server.ipfd > 0) close(server.ipfd);
if (server.sofd > 0) close(server.sofd);
closeListeningSockets(0);
redisSetProcTitle("redis-aof-rewrite");
snprintf(tmpfile,256,"temp-rewriteaof-bg-%d.aof", (int) getpid());
if (rewriteAppendOnlyFile(tmpfile) == REDIS_OK) {