HDFS-12280. Ozone: TestOzoneContainer#testCreateOzoneContainer fails. Contributed by Lokesh Jain.
This commit is contained in:
parent
4d3b8d332d
commit
532ced18fc
|
@ -59,7 +59,6 @@ public class TestOzoneContainer {
|
||||||
MiniOzoneCluster cluster = null;
|
MiniOzoneCluster cluster = null;
|
||||||
try {
|
try {
|
||||||
cluster = new MiniOzoneCluster.Builder(conf)
|
cluster = new MiniOzoneCluster.Builder(conf)
|
||||||
.setRandomContainerPort(false)
|
|
||||||
.setHandlerType(OzoneConsts.OZONE_HANDLER_DISTRIBUTED).build();
|
.setHandlerType(OzoneConsts.OZONE_HANDLER_DISTRIBUTED).build();
|
||||||
// We don't start Ozone Container via data node, we will do it
|
// We don't start Ozone Container via data node, we will do it
|
||||||
// independently in our test path.
|
// independently in our test path.
|
||||||
|
@ -67,6 +66,7 @@ public class TestOzoneContainer {
|
||||||
containerName);
|
containerName);
|
||||||
conf.setInt(OzoneConfigKeys.DFS_CONTAINER_IPC_PORT,
|
conf.setInt(OzoneConfigKeys.DFS_CONTAINER_IPC_PORT,
|
||||||
pipeline.getLeader().getContainerPort());
|
pipeline.getLeader().getContainerPort());
|
||||||
|
conf.setBoolean(OzoneConfigKeys.DFS_CONTAINER_IPC_RANDOM_PORT, false);
|
||||||
container = new OzoneContainer(DFSTestUtil.getLocalDatanodeID(1),
|
container = new OzoneContainer(DFSTestUtil.getLocalDatanodeID(1),
|
||||||
conf);
|
conf);
|
||||||
container.start();
|
container.start();
|
||||||
|
|
Loading…
Reference in New Issue