]> git.saurik.com Git - redis.git/blobdiff - src/replication.c
Bug fix: slaves being pinged every second
[redis.git] / src / replication.c
index 45a223b8e36d4dbc333d83122052442ce22c747d..3f7c2914dcecaeb2b52be4659a8fd6655eec0821 100644 (file)
@@ -668,7 +668,7 @@ void replicationCron(void) {
      * So slaves can implement an explicit timeout to masters, and will
      * be able to detect a link disconnection even if the TCP connection
      * will not actually go down. */
      * So slaves can implement an explicit timeout to masters, and will
      * be able to detect a link disconnection even if the TCP connection
      * will not actually go down. */
-    if (!(server.cronloops % (server.repl_ping_slave_period*10))) {
+    if (!(server.cronloops % (server.repl_ping_slave_period * REDIS_HZ))) {
         listIter li;
         listNode *ln;
 
         listIter li;
         listNode *ln;