]> git.saurik.com Git - redis.git/blobdiff - src/networking.c
first attempt to non blocking implementation of slave replication and SYNC bulk data...
[redis.git] / src / networking.c
index d2eb25432002ae3ea0408c495fce745575ce2007..634e2107c0fcedb288977daf562f53bb893b8c75 100644 (file)
@@ -467,6 +467,7 @@ 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