ACCUMULO-4015 Fix ExistingMacIT failure on Hadoop 1
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/e24bd367 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/e24bd367 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/e24bd367 Branch: refs/heads/master Commit: e24bd367263b399decbda7bae9a068c0dfe1add4 Parents: 9c206aa Author: Christopher Tubbs <ctubb...@apache.org> Authored: Thu Oct 1 12:44:53 2015 -0400 Committer: Christopher Tubbs <ctubb...@apache.org> Committed: Thu Oct 1 12:44:53 2015 -0400 ---------------------------------------------------------------------- test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/e24bd367/test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java ---------------------------------------------------------------------- diff --git a/test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java b/test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java index 6330a59..d55e427 100644 --- a/test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java +++ b/test/src/test/java/org/apache/accumulo/test/ExistingMacIT.java @@ -64,6 +64,7 @@ public class ExistingMacIT extends ConfigurableMacIT { private void createEmptyConfig(File confFile) throws IOException { Configuration conf = new Configuration(false); + conf.set("fs.file.impl", RawLocalFileSystem.class.getName()); OutputStream hcOut = new FileOutputStream(confFile); conf.writeXml(hcOut); hcOut.close();