You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/12/02 21:37:04 UTC

[16/50] [abbrv] accumulo git commit: ACCUMULO-3167 MiniCluster configuration callback method wasn't getting invoked.

ACCUMULO-3167 MiniCluster configuration callback method wasn't getting invoked.


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

Branch: refs/heads/metrics2
Commit: 0c54425ecaca89988b22583af49c513279db5f7a
Parents: 5187012
Author: Josh Elser <el...@apache.org>
Authored: Sat Nov 22 13:01:50 2014 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Mon Nov 24 18:08:51 2014 -0500

----------------------------------------------------------------------
 .../java/org/apache/accumulo/harness/MiniClusterHarness.java     | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/0c54425e/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
----------------------------------------------------------------------
diff --git a/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java b/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
index 9f2ee5f..61e7161 100644
--- a/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
+++ b/test/src/test/java/org/apache/accumulo/harness/MiniClusterHarness.java
@@ -60,6 +60,10 @@ public class MiniClusterHarness {
     return create(testBase.getClass().getName(), testBase.testName.getMethodName(), token);
   }
 
+  public MiniAccumuloClusterImpl create(AccumuloClusterIT testBase, AuthenticationToken token) throws Exception {
+    return create(testBase.getClass().getName(), testBase.testName.getMethodName(), token, testBase);
+  }
+
   public MiniAccumuloClusterImpl create(AccumuloClusterIT testBase, AuthenticationToken token, MiniClusterConfigurationCallback callback) throws Exception {
     return create(testBase.getClass().getName(), testBase.testName.getMethodName(), token, testBase);
   }