Skip to content

Commit

Permalink
HBASE-24175 [Flakey Tests] TestSecureExportSnapshot FileNotFoundExcep…
Browse files Browse the repository at this point in the history
…tion

Addendum apache#2: The new test fails on origin.hbase.dir written by HTU up on
jenkins... has a 'tmp' in it. Fix.
  • Loading branch information
saintstack authored and ddupg committed Apr 20, 2020
1 parent 266b6bb commit c8999f5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ public static void setUpBeforeClass() throws Exception {
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;
}
Expand Down

0 comments on commit c8999f5

Please sign in to comment.