]> git.saurik.com Git - redis.git/blobdiff - src/networking.c
Fixed issue #435 and at the same time introduced explicit ping in the master-slave...
[redis.git] / src / networking.c
index 4c3db9379fe234431e33821aaec83ff5701d452f..166b44c95bd83faa90c04e7637b2bd103df06e21 100644 (file)
@@ -497,7 +497,6 @@ void freeClient(redisClient *c) {
     /* Case 2: we lost the connection with the master. */
     if (c->flags & REDIS_MASTER) {
         server.master = NULL;
-        /* FIXME */
         server.replstate = REDIS_REPL_CONNECT;
         /* Since we lost the connection with the master, we should also
          * close the connection with all our slaves if we have any, so