Commit 4513d8fc authored by antirez's avatar antirez
Browse files

Cluster: UPDATE messages are the norm and verbose.

Logging them at WARNING level was of little utility and of sure disturb.
parent 97212551
...@@ -1430,7 +1430,7 @@ int clusterProcessPacket(clusterLink *link) { ...@@ -1430,7 +1430,7 @@ int clusterProcessPacket(clusterLink *link) {
if (server.cluster->slots[j]->configEpoch > if (server.cluster->slots[j]->configEpoch >
senderConfigEpoch) senderConfigEpoch)
{ {
redisLog(REDIS_WARNING, redisLog(REDIS_VERBOSE,
"Node %.40s has old slots configuration, sending " "Node %.40s has old slots configuration, sending "
"an UPDATE message about %.40s", "an UPDATE message about %.40s",
sender->name, server.cluster->slots[j]->name); sender->name, server.cluster->slots[j]->name);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment