1
0
Эх сурвалжийг харах

Fix trace logging statement in ZenDiscovery

Jason Tedor 9 жил өмнө
parent
commit
d0c03b26f6

+ 1 - 1
core/src/main/java/org/elasticsearch/discovery/zen/ZenDiscovery.java

@@ -910,7 +910,7 @@ public class ZenDiscovery extends AbstractLifecycleComponent<Discovery> implemen
             activeNodes.add(localNode);
             long joinsCounter = clusterJoinsCounter.get();
             if (joinsCounter > 0) {
-                logger.trace("adding local node to the list of active nodes who has previously joined the cluster (joins counter is [{}})", joinsCounter);
+                logger.trace("adding local node to the list of active nodes that have previously joined the cluster (joins counter is [{}])", joinsCounter);
                 joinedOnceActiveNodes.add(localNode);
             }
         }