Repository: accumulo Updated Branches: refs/heads/master 7e4b0607c -> 4c22e9bdb
ACCUMULO-3452 Set a timeout on KerberosProxyIT Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/4c22e9bd Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/4c22e9bd Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/4c22e9bd Branch: refs/heads/master Commit: 4c22e9bdbf36154cc6055693c6aa0094a67e6ca8 Parents: 7e4b060 Author: Josh Elser <els...@apache.org> Authored: Fri Jan 23 13:03:58 2015 -0500 Committer: Josh Elser <els...@apache.org> Committed: Fri Jan 23 13:03:58 2015 -0500 ---------------------------------------------------------------------- .../org/apache/accumulo/test/functional/KerberosProxyIT.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/4c22e9bd/test/src/test/java/org/apache/accumulo/test/functional/KerberosProxyIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/functional/KerberosProxyIT.java b/test/src/test/java/org/apache/accumulo/test/functional/KerberosProxyIT.java index 60d07fa..4c8c6de 100644 --- a/test/src/test/java/org/apache/accumulo/test/functional/KerberosProxyIT.java +++ b/test/src/test/java/org/apache/accumulo/test/functional/KerberosProxyIT.java @@ -87,6 +87,11 @@ public class KerberosProxyIT extends AccumuloIT { private static File proxyKeytab; private static String hostname, proxyPrimary, proxyPrincipal; + @Override + protected int defaultTimeoutSeconds() { + return 60 * 5; + } + @BeforeClass public static void startKdc() throws Exception { kdc = new TestingKdc();