Map<OperationType, Handler> handlers =
initializeNettyHandlers(tm, dm, pm, sm, subChannelMgr);
// Initialize Netty for the regular non-SSL channels
initializeNetty(null, handlers, subChannelMgr);
if (conf.isSSLEnabled()) {
initializeNetty(new SslServerContextFactory(conf),
handlers, subChannelMgr);
}
// register jmx
registerJMX(subChannelMgr);
} catch (Exception e) {