You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by eo...@apache.org on 2017/05/25 11:37:35 UTC

bookkeeper git commit: BOOKKKEEPER-1072: CompactionTest is flaky when disks are almost full

Repository: bookkeeper
Updated Branches:
  refs/heads/master 667390d1a -> 8ba8ab940


BOOKKKEEPER-1072: CompactionTest is flaky when disks are almost full

Author: Sijie Guo <si...@apache.org>

Reviewers: Enrico Olivelli <None>, Jia Zhai <None>

Closes #159 from sijie/BOOKKEEPER-1072


Project: http://git-wip-us.apache.org/repos/asf/bookkeeper/repo
Commit: http://git-wip-us.apache.org/repos/asf/bookkeeper/commit/8ba8ab94
Tree: http://git-wip-us.apache.org/repos/asf/bookkeeper/tree/8ba8ab94
Diff: http://git-wip-us.apache.org/repos/asf/bookkeeper/diff/8ba8ab94

Branch: refs/heads/master
Commit: 8ba8ab9403dbc464c68caf6e7cd3fc490670731e
Parents: 667390d
Author: Sijie Guo <si...@apache.org>
Authored: Thu May 25 13:37:29 2017 +0200
Committer: eolivelli <eo...@apache.org>
Committed: Thu May 25 13:37:29 2017 +0200

----------------------------------------------------------------------
 .../test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java  | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bookkeeper/blob/8ba8ab94/bookkeeper-server/src/test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java
----------------------------------------------------------------------
diff --git a/bookkeeper-server/src/test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java b/bookkeeper-server/src/test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java
index 9234238..bdd9e4a 100644
--- a/bookkeeper-server/src/test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java
+++ b/bookkeeper-server/src/test/java/org/apache/bookkeeper/conf/TestBKConfiguration.java
@@ -30,6 +30,8 @@ public class TestBKConfiguration {
         confReturn.setJournalFormatVersionToWrite(5);
         confReturn.setAllowLoopback(true);
         confReturn.setGcWaitTime(1000);
+        confReturn.setDiskUsageThreshold(0.999f);
+        confReturn.setDiskUsageWarnThreshold(0.99f);
         return confReturn;
     }