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

Remove period in min master node check log message

As most of our log messages are not sentences and do not end with
periods, this commit removes a period from the end of the min master
node bootstrap check log message.
Jason Tedor 9 жил өмнө
parent
commit
0830bd4885

+ 1 - 1
core/src/main/java/org/elasticsearch/bootstrap/BootstrapCheck.java

@@ -335,7 +335,7 @@ final class BootstrapCheck {
         @Override
         public String errorMessage() {
             return "please set [" + ElectMasterService.DISCOVERY_ZEN_MINIMUM_MASTER_NODES_SETTING.getKey() +
-                "] to a majority of the number of master eligible nodes in your cluster.";
+                "] to a majority of the number of master eligible nodes in your cluster";
         }
 
         @Override