You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ch...@apache.org on 2021/03/10 02:56:21 UTC

[iotdb] branch master updated: Update the SeedUrl Format Exception Info when using cluster mode (#2786)

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

chaow 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 6694c5d  Update the SeedUrl Format Exception Info when using cluster mode (#2786)
6694c5d is described below

commit 6694c5d70ff78bd1b67768b147514ec57a168990
Author: Yifu Zhou <ef...@gmail.com>
AuthorDate: Wed Mar 10 10:56:04 2021 +0800

    Update the SeedUrl Format Exception Info when using cluster mode (#2786)
---
 .../org/apache/iotdb/cluster/exception/BadSeedUrlFormatException.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/cluster/src/main/java/org/apache/iotdb/cluster/exception/BadSeedUrlFormatException.java b/cluster/src/main/java/org/apache/iotdb/cluster/exception/BadSeedUrlFormatException.java
index 1bf2c54..24ea758 100644
--- a/cluster/src/main/java/org/apache/iotdb/cluster/exception/BadSeedUrlFormatException.java
+++ b/cluster/src/main/java/org/apache/iotdb/cluster/exception/BadSeedUrlFormatException.java
@@ -24,8 +24,7 @@ public class BadSeedUrlFormatException extends Exception {
   public BadSeedUrlFormatException(String seedUrl) {
     super(
         String.format(
-            "Seed url %s has bad format, which should be "
-                + "{IP/DomainName}:{metaPort}:{dataPort}:{clientPort}",
+            "Seed url %s has bad format, which should be " + "{IP/DomainName}:{metaPort}",
             seedUrl));
   }
 }