HDFS-13652. Randomize baseDir for MiniDFSCluster in TestBlockScanner. Contributed by Anbang Hu.
This commit is contained in:
parent
f30f2dc408
commit
a28848104f
|
@ -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