HBASE-23816 [Flakey Test] TestExportSnapshotNoCluster.testSnapshotV2WithRefsExportFileSystemState(TestExportSnapshotNoCluster.java:91) Wrong FS!

This commit is contained in:
stack 2020-02-08 11:09:44 -08:00
parent a814616a7d
commit f0fee2fb27
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/**
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
@ -51,7 +51,7 @@ public class TestExportSnapshotNoCluster {
private static final Logger LOG = LoggerFactory.getLogger(TestExportSnapshotNoCluster.class);
private final HBaseCommonTestingUtility testUtil = new HBaseCommonTestingUtility();
private HBaseCommonTestingUtility testUtil;
private FileSystem fs;
private Path testDir;
@ -67,6 +67,7 @@ public class TestExportSnapshotNoCluster {
@Before
public void setUpBefore() throws Exception {
this.testUtil = new HBaseCommonTestingUtility();
// Make sure testDir is on LocalFileSystem
testDir = testUtil.getDataTestDir().makeQualified(URI.create("file:///"), new Path("/"));
fs = testDir.getFileSystem(testUtil.getConfiguration());