You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ec...@apache.org on 2013/10/29 21:02:28 UTC

git commit: ACCUMULO-1823 more tweaks to help stabilize the ITs

Updated Branches:
  refs/heads/master 60de4b17b -> 5b8efba01


ACCUMULO-1823 more tweaks to help stabilize the ITs


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/5b8efba0
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/5b8efba0
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/5b8efba0

Branch: refs/heads/master
Commit: 5b8efba01a2c654a618d7fb0b46c2981f7b3b3bf
Parents: 60de4b1
Author: Eric Newton <er...@gmail.com>
Authored: Tue Oct 29 16:02:40 2013 -0400
Committer: Eric Newton <er...@gmail.com>
Committed: Tue Oct 29 16:02:40 2013 -0400

----------------------------------------------------------------------
 .../org/apache/accumulo/test/functional/GarbageCollectorIT.java  | 2 +-
 .../test/java/org/apache/accumulo/test/functional/RestartIT.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/5b8efba0/test/src/test/java/org/apache/accumulo/test/functional/GarbageCollectorIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/GarbageCollectorIT.java b/test/src/test/java/org/apache/accumulo/test/functional/GarbageCollectorIT.java
index 9cdd9ab..5d58fdb 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/GarbageCollectorIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/GarbageCollectorIT.java
@@ -103,7 +103,7 @@ public class GarbageCollectorIT extends ConfigurableMacIT {
     assertTrue(output.contains("delete candidates has exceeded"));
   }
 
-  @Test(timeout = 4 * 60 * 1000)
+  @Test(timeout = 20 * 60 * 1000)
   public void dontGCRootLog() throws Exception {
     // dirty !METADATA
     Connector c = getConnector();

http://git-wip-us.apache.org/repos/asf/accumulo/blob/5b8efba0/test/src/test/java/org/apache/accumulo/test/functional/RestartIT.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/test/functional/RestartIT.java b/test/src/test/java/org/apache/accumulo/test/functional/RestartIT.java
index 79a895b..9de8985 100644
--- a/test/src/test/java/org/apache/accumulo/test/functional/RestartIT.java
+++ b/test/src/test/java/org/apache/accumulo/test/functional/RestartIT.java
@@ -154,8 +154,8 @@ public class RestartIT extends ConfigurableMacIT {
   public void shutdownDuringCompactingSplitting() throws Exception {
     Connector c = getConnector();
     c.tableOperations().create("test_ingest");
-    c.tableOperations().setProperty("test_ingest", Property.TABLE_SPLIT_THRESHOLD.getKey(), "5K");
-    c.tableOperations().setProperty(MetadataTable.NAME, Property.TABLE_SPLIT_THRESHOLD.getKey(), "10K");
+    c.tableOperations().setProperty("test_ingest", Property.TABLE_SPLIT_THRESHOLD.getKey(), "10K");
+    c.tableOperations().setProperty(MetadataTable.NAME, Property.TABLE_SPLIT_THRESHOLD.getKey(), "20K");
     TestIngest.Opts opts = new TestIngest.Opts();
     TestIngest.ingest(c, opts, BWOPTS);
     c.tableOperations().flush("test_ingest", null, null, false);