HDFS-13210. Fix the typo in MiniDFSCluster class. Contributed by fang zhenyi.
This commit is contained in:
parent
923e1773e1
commit
55669515f6
@ -2745,7 +2745,8 @@ public void injectBlocks(int dataNodeIndex,
|
||||
final DataNode dn = dataNodes.get(dataNodeIndex).datanode;
|
||||
final FsDatasetSpi<?> dataSet = DataNodeTestUtils.getFSDataset(dn);
|
||||
if (!(dataSet instanceof SimulatedFSDataset)) {
|
||||
throw new IOException("injectBlocks is valid only for SimilatedFSDataset");
|
||||
throw new IOException("injectBlocks is valid only for" +
|
||||
" SimulatedFSDataset");
|
||||
}
|
||||
if (bpid == null) {
|
||||
bpid = getNamesystem().getBlockPoolId();
|
||||
@ -2766,7 +2767,8 @@ public void injectBlocks(int nameNodeIndex, int dataNodeIndex,
|
||||
final DataNode dn = dataNodes.get(dataNodeIndex).datanode;
|
||||
final FsDatasetSpi<?> dataSet = DataNodeTestUtils.getFSDataset(dn);
|
||||
if (!(dataSet instanceof SimulatedFSDataset)) {
|
||||
throw new IOException("injectBlocks is valid only for SimilatedFSDataset");
|
||||
throw new IOException("injectBlocks is valid only for" +
|
||||
" SimulatedFSDataset");
|
||||
}
|
||||
String bpid = getNamesystem(nameNodeIndex).getBlockPoolId();
|
||||
SimulatedFSDataset sdataset = (SimulatedFSDataset) dataSet;
|
||||
|
Loading…
Reference in New Issue
Block a user