Repository: accumulo Updated Branches: refs/heads/master fb5410a04 -> 6487e0c5d
ACCUMULO-3614 Switch timeout and increase it so that it passes for me. Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6487e0c5 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6487e0c5 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6487e0c5 Branch: refs/heads/master Commit: 6487e0c5dcd5a7cdd4b7bf39f8e15c681e3ac1df Parents: fb5410a Author: Josh Elser <[email protected]> Authored: Mon Feb 23 22:21:23 2015 -0500 Committer: Josh Elser <[email protected]> Committed: Mon Feb 23 22:21:23 2015 -0500 ---------------------------------------------------------------------- .../test/java/org/apache/accumulo/test/WaitForBalanceIT.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/6487e0c5/test/src/test/java/org/apache/accumulo/test/WaitForBalanceIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/WaitForBalanceIT.java b/test/src/test/java/org/apache/accumulo/test/WaitForBalanceIT.java index b558715..fa62208 100644 --- a/test/src/test/java/org/apache/accumulo/test/WaitForBalanceIT.java +++ b/test/src/test/java/org/apache/accumulo/test/WaitForBalanceIT.java @@ -39,7 +39,12 @@ import org.junit.Test; public class WaitForBalanceIT extends ConfigurableMacIT { - @Test(timeout = 30 * 1000) + @Override + public int defaultTimeoutSeconds() { + return 60; + } + + @Test public void test() throws Exception { final Connector c = getConnector(); // ensure the metadata table is online
