Repository: incubator-blur Updated Branches: refs/heads/master 9309ce698 -> 3958192bc
Fixing broken test. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/3958192b Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/3958192b Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/3958192b Branch: refs/heads/master Commit: 3958192bc76b3ed598b938ac7fafa64a076729aa Parents: 9309ce6 Author: Aaron McCurry <[email protected]> Authored: Mon Jun 1 15:51:46 2015 -0400 Committer: Aaron McCurry <[email protected]> Committed: Mon Jun 1 15:51:46 2015 -0400 ---------------------------------------------------------------------- .../java/org/apache/blur/manager/writer/IndexImporterTest.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/3958192b/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java ---------------------------------------------------------------------- diff --git a/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java b/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java index 68e0a3d..11c9d77 100644 --- a/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java +++ b/blur-core/src/test/java/org/apache/blur/manager/writer/IndexImporterTest.java @@ -219,6 +219,11 @@ public class IndexImporterTest { public long getSegmentImportInProgressCount() throws IOException { throw new RuntimeException("Not implemented."); } + + @Override + public long getOnDiskSize() throws IOException { + throw new RuntimeException("Not Implemented"); + } }; }
