You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by as...@apache.org on 2020/02/10 15:52:52 UTC

[ignite] branch master updated: IGNITE-12655 Remove setting explicit page size in IgnitePdsDestroyCacheAbstractTest.

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

ascherbakov 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 c45d108  IGNITE-12655 Remove setting explicit page size in IgnitePdsDestroyCacheAbstractTest.
c45d108 is described below

commit c45d108b735690b532057247b106240499a510dc
Author: Aleksei Scherbakov <as...@apache.org>
AuthorDate: Mon Feb 10 18:52:08 2020 +0300

    IGNITE-12655 Remove setting explicit page size in IgnitePdsDestroyCacheAbstractTest.
---
 .../processors/cache/persistence/IgnitePdsDestroyCacheAbstractTest.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgnitePdsDestroyCacheAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgnitePdsDestroyCacheAbstractTest.java
index f870fb6..1f2a535 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgnitePdsDestroyCacheAbstractTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/IgnitePdsDestroyCacheAbstractTest.java
@@ -55,7 +55,6 @@ public abstract class IgnitePdsDestroyCacheAbstractTest extends GridCommonAbstra
 
         return cfg.setDataStorageConfiguration(new DataStorageConfiguration()
             .setWalSegmentSize(4 * 1024 * 1024)
-            .setPageSize(1024)
             .setDefaultDataRegionConfiguration(new DataRegionConfiguration()
                 .setMaxSize(200 * 1024 * 1024)
                 .setPersistenceEnabled(true)));