This is an automated email from the ASF dual-hosted git repository.
ipavlukhin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new f7cfedd IGNITE-12000 Await evictions before stopping nodes in
IgniteSqlQueryMinMaxTest to make test stable - Fixes #6708.
f7cfedd is described below
commit f7cfedd13d4f1f2cffa2c1da44150ca8d154004f
Author: ipavlukhin <[email protected]>
AuthorDate: Fri Jul 19 22:33:50 2019 +0300
IGNITE-12000 Await evictions before stopping nodes in
IgniteSqlQueryMinMaxTest to make test stable - Fixes #6708.
Signed-off-by: ipavlukhin <[email protected]>
---
.../ignite/internal/processors/query/h2/IgniteSqlQueryMinMaxTest.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/IgniteSqlQueryMinMaxTest.java
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/IgniteSqlQueryMinMaxTest.java
index 4659f6a..f5f7711 100644
---
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/IgniteSqlQueryMinMaxTest.java
+++
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/h2/IgniteSqlQueryMinMaxTest.java
@@ -47,6 +47,8 @@ public class IgniteSqlQueryMinMaxTest extends
AbstractIndexingCommonTest {
@Override protected void afterTest() throws Exception {
super.afterTest();
+ awaitPartitionMapExchange(true, false, null);
+
stopAllGrids();
}