if (cmd.hasOption("nonblocking")) {
LOG.info("starting HBase Nonblocking Thrift server on " + Integer.toString(listenPort));
server = new TNonblockingServer(processor, serverTransport, transportFactory, protocolFactory);
} else {
LOG.info("starting HBase HsHA Thrift server on " + Integer.toString(listenPort));
server = new THsHaServer(processor, serverTransport, transportFactory, protocolFactory);
}
} else {
// Get IP address to bind to
InetAddress listenAddress = null;
if (cmd.hasOption("bind")) {