You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by zs...@apache.org on 2022/02/01 05:52:20 UTC

[ignite-3] branch main updated: IGNITE-16389 Fix unstable test testStopQueryOnNodeStop - Fixes #601.

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

zstan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new 58ac13b  IGNITE-16389 Fix unstable test testStopQueryOnNodeStop - Fixes #601.
58ac13b is described below

commit 58ac13b11046391830184d9b1759e0582a2efb28
Author: zstan <st...@gmail.com>
AuthorDate: Tue Feb 1 08:51:40 2022 +0300

    IGNITE-16389 Fix unstable test testStopQueryOnNodeStop - Fixes #601.
    
    Signed-off-by: zstan <st...@gmail.com>
---
 .../org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java    | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java
index c99d24d..3cbc1ca 100644
--- a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java
+++ b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java
@@ -197,6 +197,8 @@ public class StopCalciteModuleTest {
                 "SELECT 1"
         )).getCause() instanceof NodeStoppingException);
 
+        System.gc();
+
         // Check: there are no alive Ignite threads.
         assertFalse(isThereNodeThreads(NODE_NAME));
     }