ACCUMULO-3614 Add timeout to TabletStateChangeIteratorIT
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/0d6f84c1 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/0d6f84c1 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/0d6f84c1 Branch: refs/heads/master Commit: 0d6f84c1537df52fb366edff10636969a00297fc Parents: 9a1c774 Author: Josh Elser <[email protected]> Authored: Mon Feb 23 13:40:26 2015 -0500 Committer: Josh Elser <[email protected]> Committed: Mon Feb 23 13:40:26 2015 -0500 ---------------------------------------------------------------------- .../accumulo/test/functional/TabletStateChangeIteratorIT.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/0d6f84c1/test/src/test/java/org/apache/accumulo/test/functional/TabletStateChangeIteratorIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/TabletStateChangeIteratorIT.java b/test/src/test/java/org/apache/accumulo/test/functional/TabletStateChangeIteratorIT.java index 3adf6c0..4c192f7 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/TabletStateChangeIteratorIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/TabletStateChangeIteratorIT.java @@ -63,6 +63,11 @@ import com.google.common.collect.Sets; */ public class TabletStateChangeIteratorIT extends SharedMiniClusterIT { + @Override + public int defaultTimeoutSeconds() { + return 2 * 60; + } + @Test public void test() throws AccumuloException, AccumuloSecurityException, TableExistsException, TableNotFoundException { String[] tables = getUniqueNames(4);
