HBASE-24175 [Flakey Tests] TestSecureExportSnapshot FileNotFoundException
Addendum #2: The new test fails on origin.hbase.dir written by HTU up on jenkins... has a 'tmp' in it. Fix.
This commit is contained in:
parent
853a72bc46
commit
411c083f22
|
@ -73,6 +73,9 @@ public class TestExportSnapshotAdjunct {
|
|||
Configuration conf = TEST_UTIL.getConfiguration();
|
||||
for (Iterator<Map.Entry<String, String>> i = conf.iterator(); i.hasNext();) {
|
||||
Map.Entry<String, String> e = i.next();
|
||||
if (e.getKey().contains("original.hbase.dir")) {
|
||||
continue;
|
||||
}
|
||||
if (e.getValue().contains("java.io.tmpdir")) {
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue