We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a329e commit 360baf9Copy full SHA for 360baf9
hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/snapshot/TestExportSnapshotAdjunct.java
@@ -74,6 +74,9 @@ public static void setUpBeforeClass() throws Exception {
74
Configuration conf = TEST_UTIL.getConfiguration();
75
for (Iterator<Map.Entry<String, String>> i = conf.iterator(); i.hasNext();) {
76
Map.Entry<String, String> e = i.next();
77
+ if (e.getKey().contains("original.hbase.dir")) {
78
+ continue;
79
+ }
80
if (e.getValue().contains("java.io.tmpdir")) {
81
continue;
82
}
0 commit comments