Binding multiple IPs done properly with multiple sockets.

This commit is contained in:
antirez
2013-07-05 11:47:20 +02:00
parent 2160effc78
commit 98eecb70eb
5 changed files with 79 additions and 31 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) {