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:
stack 2020-04-15 22:42:09 -07:00
parent 853a72bc46
commit 411c083f22
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}