Skip to content

Commit

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

Addendum #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 committed Apr 16, 2020
1 parent 853a72b commit 411c083
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,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 411c083

Please sign in to comment.