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

dpavlov 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 18af47d  IGNITE-11681 Fix for three failed tests. (#6402)
18af47d is described below

commit 18af47d8d0f880981c8f47fc174377d692fdcd8c
Author: Ivan Bessonov <bessonov...@gmail.com>
AuthorDate: Thu Apr 4 12:39:38 2019 +0300

    IGNITE-11681 Fix for three failed tests. (#6402)
---
 .../internal/processors/metastorage/DistributedMetaStorageTest.java   | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/metastorage/DistributedMetaStorageTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/metastorage/DistributedMetaStorageTest.java
index b6bfa99..c50b2c3 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/metastorage/DistributedMetaStorageTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/metastorage/DistributedMetaStorageTest.java
@@ -37,6 +37,7 @@ import org.junit.After;
 import org.junit.Before;
 import org.junit.Test;
 
+import static 
org.apache.ignite.IgniteSystemProperties.IGNITE_BASELINE_AUTO_ADJUST_ENABLED;
 import static 
org.apache.ignite.IgniteSystemProperties.IGNITE_GLOBAL_METASTORAGE_HISTORY_MAX_BYTES;
 
 /**
@@ -308,6 +309,7 @@ public class DistributedMetaStorageTest extends 
GridCommonAbstractTest {
      * @throws Exception If failed.
      */
     @Test
+    @WithSystemProperty(key = IGNITE_BASELINE_AUTO_ADJUST_ENABLED, value = 
"false")
     public void testOptimizedWriteTwice() throws Exception {
         startGrid(0).cluster().active(true);
 
@@ -328,6 +330,7 @@ public class DistributedMetaStorageTest extends 
GridCommonAbstractTest {
 
     /** */
     @Test
+    @WithSystemProperty(key = IGNITE_BASELINE_AUTO_ADJUST_ENABLED, value = 
"false")
     public void testClient() throws Exception {
         startGrid(0).cluster().active(true);
 
@@ -354,6 +357,7 @@ public class DistributedMetaStorageTest extends 
GridCommonAbstractTest {
 
     /** */
     @Test
+    @WithSystemProperty(key = IGNITE_BASELINE_AUTO_ADJUST_ENABLED, value = 
"false")
     public void testClientReconnect() throws Exception {
         startGrid(0).cluster().active(true);
 

Reply via email to