HDFS-11815. CBlockManager#main should join() after start() service. Contributed by Chen Liang.

This commit is contained in:
Xiaoyu Yao 2017-05-14 06:12:19 -07:00 committed by Owen O'Malley
parent a6013e2b5b
commit 821740e4d3

View File

@ -363,5 +363,6 @@ public static void main(String[] args) throws Exception {
client, new XceiverClientManager(ozoneConf));
CBlockManager cbm = new CBlockManager(ozoneConf, storageClient);
cbm.start();
cbm.join();
}
}