You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ja...@apache.org on 2022/10/18 12:00:30 UTC

[iotdb] 01/01: Make default timeout parameter in SessionIT from 1s to 60s

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

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

commit f31eab8de07f38d1c89d4341e928c28e7dfbac30
Author: JackieTien97 <ja...@gmail.com>
AuthorDate: Tue Oct 18 20:00:16 2022 +0800

    Make default timeout parameter in SessionIT from 1s to 60s
---
 .../test/java/org/apache/iotdb/session/it/IoTDBSessionInsertNulIT.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/integration-test/src/test/java/org/apache/iotdb/session/it/IoTDBSessionInsertNulIT.java b/integration-test/src/test/java/org/apache/iotdb/session/it/IoTDBSessionInsertNulIT.java
index 8243ffbe01..8853101160 100644
--- a/integration-test/src/test/java/org/apache/iotdb/session/it/IoTDBSessionInsertNulIT.java
+++ b/integration-test/src/test/java/org/apache/iotdb/session/it/IoTDBSessionInsertNulIT.java
@@ -87,7 +87,7 @@ public class IoTDBSessionInsertNulIT {
 
   private long queryCountRecords(ISession session, String sql)
       throws StatementExecutionException, IoTDBConnectionException {
-    SessionDataSet dataSetWrapper = session.executeQueryStatement(sql, 1000);
+    SessionDataSet dataSetWrapper = session.executeQueryStatement(sql, 60_000);
     long count = 0;
     while (dataSetWrapper.hasNext()) {
       RowRecord record = dataSetWrapper.next();