From f39a0bdb7744314c0b999c996ae43be1768877c7 Mon Sep 17 00:00:00 2001 From: Ted Nyman Date: Fri, 12 Jul 2013 14:06:27 -0700 Subject: [PATCH] Make sure the log standardizes on 'timeout' --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index f82c32a8..8b4c1b7c 100644 --- a/src/replication.c +++ b/src/replication.c @@ -1554,7 +1554,7 @@ void replicationCron(void) { if (server.masterhost && server.repl_state == REDIS_REPL_CONNECTED && (time(NULL)-server.master->lastinteraction) > server.repl_timeout) { - redisLog(REDIS_WARNING,"MASTER time out: no data nor PING received..."); + redisLog(REDIS_WARNING,"MASTER timeout: no data nor PING received..."); freeClient(server.master); }