You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ta...@apache.org on 2021/09/30 08:09:32 UTC

[iotdb] branch master updated: fix usage of removeNode (#4061)

This is an automated email from the ASF dual-hosted git repository.

tanxinyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 01b8d0f  fix usage of removeNode (#4061)
01b8d0f is described below

commit 01b8d0f3b19856a56cdf288289da92573fe2e586
Author: lisijia <44...@users.noreply.github.com>
AuthorDate: Thu Sep 30 16:09:10 2021 +0800

    fix usage of removeNode (#4061)
---
 cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java b/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
index adc4661..79c86f4 100644
--- a/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
+++ b/cluster/src/main/java/org/apache/iotdb/cluster/ClusterMain.java
@@ -220,7 +220,7 @@ public class ClusterMain {
 
   private static void doRemoveNode(String[] args) throws IOException {
     if (args.length != 3) {
-      logger.error("Usage: -r <ip> <metaPort>");
+      logger.error("Usage: <ip> <metaPort>");
       return;
     }
     String ip = args[1];