You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/08/10 12:05:04 UTC

ignite git commit: IGNITE-5901 - Debug

Repository: ignite
Updated Branches:
  refs/heads/ignite-5901 de49c95f4 -> 96ec4cacf


IGNITE-5901 - Debug


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/96ec4cac
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/96ec4cac
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/96ec4cac

Branch: refs/heads/ignite-5901
Commit: 96ec4cacfe76898c48371f2c8b45bb21997a2c3a
Parents: de49c95
Author: Alexey Goncharuk <al...@gmail.com>
Authored: Thu Aug 10 15:04:55 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Thu Aug 10 15:04:55 2017 +0300

----------------------------------------------------------------------
 .../cache/persistence/db/wal/IgniteWalRecoveryTest.java          | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/96ec4cac/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/wal/IgniteWalRecoveryTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/wal/IgniteWalRecoveryTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/wal/IgniteWalRecoveryTest.java
index e603910..3d4f59f 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/wal/IgniteWalRecoveryTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/db/wal/IgniteWalRecoveryTest.java
@@ -138,6 +138,8 @@ public class IgniteWalRecoveryTest extends GridCommonAbstractTest {
 
         pCfg.setWalRecordIteratorBufferSize(1024 * 1024);
 
+        pCfg.setWalHistorySize(2);
+
         if (logOnly)
             pCfg.setWalMode(WALMode.LOG_ONLY);
 
@@ -519,7 +521,7 @@ public class IgniteWalRecoveryTest extends GridCommonAbstractTest {
     private void checkWalRolloverMultithreaded() throws Exception {
         walSegmentSize = 2 * 1024 * 1024;
 
-        final long endTime = System.currentTimeMillis() + 20 * 60 * 1000;
+        final long endTime = System.currentTimeMillis() + 3 * 60 * 1000;
 
         try {
             IgniteEx ignite = startGrid(1);