You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2021/11/26 08:29:57 UTC

[ignite-3] branch main updated: IGNITE-16005 Disabled flaky test (SqlExampleTest)

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

sk0x50 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 69992a5  IGNITE-16005 Disabled flaky test (SqlExampleTest)
69992a5 is described below

commit 69992a5cf796939187691de52ff22fe8ac71c029
Author: Slava Koptilin <sl...@gmail.com>
AuthorDate: Fri Nov 26 11:29:26 2021 +0300

    IGNITE-16005 Disabled flaky test (SqlExampleTest)
---
 .../java/org/apache/ignite/example/sql/jdbc/SqlExamplesTest.java    | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/examples/src/test/java/org/apache/ignite/example/sql/jdbc/SqlExamplesTest.java b/examples/src/test/java/org/apache/ignite/example/sql/jdbc/SqlExamplesTest.java
index 64107ff..b44525d 100644
--- a/examples/src/test/java/org/apache/ignite/example/sql/jdbc/SqlExamplesTest.java
+++ b/examples/src/test/java/org/apache/ignite/example/sql/jdbc/SqlExamplesTest.java
@@ -27,6 +27,7 @@ import org.apache.ignite.internal.testframework.WorkDirectoryExtension;
 import org.apache.ignite.internal.util.IgniteUtils;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 import org.junit.jupiter.api.extension.ExtendWith;
 
@@ -44,6 +45,7 @@ public class SqlExamplesTest {
      * @throws Exception If failed.
      */
     @Test
+    @Disabled("https://issues.apache.org/jira/browse/IGNITE-16005")
     public void testSqlJdbcExample() throws Exception {
         ExampleTestUtils.assertConsoleOutputContains(SqlJdbcExample::main, EMPTY_ARGS,
                 "\nAll accounts:\n"
@@ -62,7 +64,7 @@ public class SqlExamplesTest {
                         + "    Richard, Miles, St. Petersburg\n"
         );
     }
-    
+
     /**
      * Start node.
      *
@@ -76,7 +78,7 @@ public class SqlExamplesTest {
                 workDir
         );
     }
-    
+
     /**
      * Stop node.
      */