Skip to content

Commit

Permalink
IGNITE-11067: Fixed failures in MVCC Cache 9 suite due to changes from
Browse files Browse the repository at this point in the history
…IGNITE-10688. This closes #5913.
  • Loading branch information
ygerzhedovich authored and devozerov committed Jan 24, 2019
1 parent 7c369fe commit c659f9c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private IgniteConfiguration getConfiguration(boolean isPersist) throws Exception
DataStorageConfiguration dsCfg = new DataStorageConfiguration()
.setDefaultDataRegionConfiguration(
new DataRegionConfiguration()
.setMaxSize(10L * 1024 * 1024)
.setMaxSize(30L * 1024 * 1024)
.setPersistenceEnabled(true))
.setWalMode(WALMode.LOG_ONLY);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
import org.apache.ignite.internal.processors.cache.distributed.CacheAtomicPrimarySyncBackPressureTest;
import org.apache.ignite.internal.processors.cache.distributed.IgniteTxCachePrimarySyncTest;
import org.apache.ignite.internal.processors.cache.distributed.IgniteTxConcurrentRemoveObjectsTest;
import org.apache.ignite.internal.stat.IoStatisticsCachePersistenceSelfTest;
import org.apache.ignite.internal.stat.IoStatisticsCacheSelfTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.model.InitializationError;
Expand Down Expand Up @@ -57,6 +59,10 @@ public static List<Class<?>> suite() {
ignoredTests.add(IgniteCacheGetCustomCollectionsSelfTest.class);
ignoredTests.add(IgniteCacheLoadRebalanceEvictionSelfTest.class);

// IO statistics.
ignoredTests.add(IoStatisticsCacheSelfTest.class);
ignoredTests.add(IoStatisticsCachePersistenceSelfTest.class);

return new ArrayList<>(IgniteCacheTestSuite9.suite(ignoredTests));
}

Expand Down

0 comments on commit c659f9c

Please sign in to comment.