Repository: incubator-blur Updated Branches: refs/heads/master ecabd6af3 -> 08565d13d
Adding a filesystem getter for 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/27bcdaad Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/27bcdaad Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/27bcdaad Branch: refs/heads/master Commit: 27bcdaad8359914835ab50f20471e8de47394c50 Parents: ecabd6a Author: Aaron McCurry <[email protected]> Authored: Sun Apr 5 09:55:56 2015 -0400 Committer: Aaron McCurry <[email protected]> Committed: Sun Apr 5 09:55:56 2015 -0400 ---------------------------------------------------------------------- blur-core/src/test/java/org/apache/blur/MiniCluster.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/27bcdaad/blur-core/src/test/java/org/apache/blur/MiniCluster.java ---------------------------------------------------------------------- diff --git a/blur-core/src/test/java/org/apache/blur/MiniCluster.java b/blur-core/src/test/java/org/apache/blur/MiniCluster.java index 26a4734..6215b15 100644 --- a/blur-core/src/test/java/org/apache/blur/MiniCluster.java +++ b/blur-core/src/test/java/org/apache/blur/MiniCluster.java @@ -751,6 +751,10 @@ public class MiniCluster { public void startZooKeeper(final Properties properties, boolean format, String path, final boolean randomPort) { zkMiniCluster.startZooKeeper(properties, format, path, randomPort); } + + public FileSystem getFileSystem() throws IOException { + return cluster.getFileSystem(); + } public URI getFileSystemUri() throws IOException { return cluster.getFileSystem().getUri();
