This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push: new c4b0ee33de Minor grammar fix in Admin StopAllCommand description c4b0ee33de is described below commit c4b0ee33dee4863c34a8532c85bef9852bff5895 Author: Christopher Tubbs <ctubb...@apache.org> AuthorDate: Wed Jun 1 14:26:02 2022 -0400 Minor grammar fix in Admin StopAllCommand description Follow on from #2748, fix a minor grammar issue by making the description more succinct (replace "all of the X" with "all X") and replace "tablets servers" with "tablet servers" --- server/base/src/main/java/org/apache/accumulo/server/util/Admin.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java index 912c5113c8..d4f6bb3c32 100644 --- a/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java +++ b/server/base/src/main/java/org/apache/accumulo/server/util/Admin.java @@ -115,7 +115,7 @@ public class Admin implements KeywordExecutable { @Parameters(commandDescription = "stop the master (DEPRECATED -- use stopManager instead)") static class StopMasterCommand {} - @Parameters(commandDescription = "stop all of the tablets servers and manager") + @Parameters(commandDescription = "stop all tablet servers and the manager") static class StopAllCommand {} @Parameters(commandDescription = "list Accumulo instances in zookeeper")