Repository: incubator-blur Updated Branches: refs/heads/apache-blur-0.2 05995926c -> 73ff98057
properly initialize the minicluster Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/73ff9805 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/73ff9805 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/73ff9805 Branch: refs/heads/apache-blur-0.2 Commit: 73ff9805715596ea020ea3d322c72996978333ac Parents: 0599592 Author: twilliams <[email protected]> Authored: Wed Feb 26 09:54:32 2014 -0500 Committer: twilliams <[email protected]> Committed: Wed Feb 26 09:54:32 2014 -0500 ---------------------------------------------------------------------- .../java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/73ff9805/blur-store/src/test/java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java ---------------------------------------------------------------------- diff --git a/blur-store/src/test/java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java b/blur-store/src/test/java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java index 5ca86db..f9c2709 100644 --- a/blur-store/src/test/java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java +++ b/blur-store/src/test/java/org/apache/blur/store/hdfs_v2/HdfsKeyValueStoreTest.java @@ -50,7 +50,7 @@ public class HdfsKeyValueStoreTest { @BeforeClass public static void startCluster() { Configuration conf = new Configuration(); - startDfs(conf, true, TMPDIR.getAbsolutePath()); + _cluster = startDfs(conf, true, TMPDIR.getAbsolutePath()); } @AfterClass
