You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2023/04/19 03:07:39 UTC

[iotdb] branch guonengtest updated (d32716ef8b -> 39f9e724a5)

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

xingtanzjr pushed a change to branch guonengtest
in repository https://gitbox.apache.org/repos/asf/iotdb.git


 discard d32716ef8b change name
     new 39f9e724a5 change ip to fit cluster and change class name

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d32716ef8b)
            \
             N -- N -- N   refs/heads/guonengtest (39f9e724a5)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 example/session/src/main/java/org/apache/iotdb/ReadTest.java  | 6 +++---
 example/session/src/main/java/org/apache/iotdb/WriteTest.java | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)


[iotdb] 01/01: change ip to fit cluster and change class name

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 39f9e724a547a64ab868ebd95b9c7f144a33cb11
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Wed Apr 19 11:06:23 2023 +0800

    change ip to fit cluster and change class name
---
 example/session/src/main/java/org/apache/iotdb/ReadTest.java   |  6 +++---
 .../java/org/apache/iotdb/{WriterTest.java => WriteTest.java}  | 10 +++++-----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/example/session/src/main/java/org/apache/iotdb/ReadTest.java b/example/session/src/main/java/org/apache/iotdb/ReadTest.java
index 13b03d815a..33f285250e 100644
--- a/example/session/src/main/java/org/apache/iotdb/ReadTest.java
+++ b/example/session/src/main/java/org/apache/iotdb/ReadTest.java
@@ -64,9 +64,9 @@ public class ReadTest {
   private static void constructRedirectSessionPool() {
     List<String> nodeUrls = new ArrayList<>();
     //    nodeUrls.add("127.0.0.1:6667");
-    nodeUrls.add("10.24.58.58:6667");
-    nodeUrls.add("10.24.58.67:6667");
-    nodeUrls.add("10.24.58.69:6667");
+    nodeUrls.add("192.168.130.16:6667");
+    nodeUrls.add("192.168.130.17:6667");
+    nodeUrls.add("192.168.130.18:6667");
     sessionPool =
         new SessionPool.Builder()
             .nodeUrls(nodeUrls)
diff --git a/example/session/src/main/java/org/apache/iotdb/WriterTest.java b/example/session/src/main/java/org/apache/iotdb/WriteTest.java
similarity index 97%
rename from example/session/src/main/java/org/apache/iotdb/WriterTest.java
rename to example/session/src/main/java/org/apache/iotdb/WriteTest.java
index a61a05740b..343ae9797e 100644
--- a/example/session/src/main/java/org/apache/iotdb/WriterTest.java
+++ b/example/session/src/main/java/org/apache/iotdb/WriteTest.java
@@ -33,11 +33,11 @@ import java.util.concurrent.CountDownLatch;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 
-public class WriterTest {
+public class WriteTest {
 
   private static SessionPool sessionPool;
 
-  private static final Logger LOGGER = LoggerFactory.getLogger(WriterTest.class);
+  private static final Logger LOGGER = LoggerFactory.getLogger(WriteTest.class);
 
   private static int THREAD_NUMBER = 300;
 
@@ -63,9 +63,9 @@ public class WriterTest {
   private static void constructRedirectSessionPool() {
     List<String> nodeUrls = new ArrayList<>();
     //    nodeUrls.add("127.0.0.1:6667");
-    nodeUrls.add("10.24.58.58:6667");
-    nodeUrls.add("10.24.58.67:6667");
-    nodeUrls.add("10.24.58.69:6667");
+    nodeUrls.add("192.168.130.16:6667");
+    nodeUrls.add("192.168.130.17:6667");
+    nodeUrls.add("192.168.130.18:6667");
     sessionPool =
         new SessionPool.Builder()
             .nodeUrls(nodeUrls)