From facd123ce60e8d39cbdfcedd51c72569d755d68a Mon Sep 17 00:00:00 2001 From: Wen Hui Date: Sat, 3 Aug 2024 11:30:55 -0400 Subject: [PATCH] Update redis.conf to valkey.conf in log message (#855) Update redis.conf to valkey.conf Signed-off-by: hwware --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index ce57e5f89..6be8d3f9d 100644 --- a/src/replication.c +++ b/src/replication.c @@ -4474,7 +4474,7 @@ void replicationCron(void) { if (server.primary_host && server.repl_state == REPL_STATE_TRANSFER && (time(NULL) - server.repl_transfer_lastio) > server.repl_timeout) { serverLog(LL_WARNING, "Timeout receiving bulk data from PRIMARY... If the problem persists try to set the " - "'repl-timeout' parameter in redis.conf to a larger value."); + "'repl-timeout' parameter in valkey.conf to a larger value."); cancelReplicationHandshake(1); }