HDFS-13652. Randomize baseDir for MiniDFSCluster in TestBlockScanner. Contributed by Anbang Hu.
(cherry picked from commit a28848104f
)
This commit is contained in:
parent
f1e1c068c0
commit
2e5f849ea5
|
@ -93,7 +93,8 @@ public class TestBlockScanner {
|
|||
|
||||
TestContext(Configuration conf, int numNameServices) throws Exception {
|
||||
this.numNameServices = numNameServices;
|
||||
MiniDFSCluster.Builder bld = new MiniDFSCluster.Builder(conf).
|
||||
File basedir = new File(GenericTestUtils.getRandomizedTempPath());
|
||||
MiniDFSCluster.Builder bld = new MiniDFSCluster.Builder(conf, basedir).
|
||||
numDataNodes(1).
|
||||
storagesPerDatanode(1);
|
||||
if (numNameServices > 1) {
|
||||
|
|
Loading…
Reference in New Issue