if (ConnectionLogger.isEnabled()) {
InetSocketAddress remoteSocketAddress = (InetSocketAddress) ctx.getChannel().getRemoteAddress();
ConnectionLogger.logDisconnectByRemoteHost(this.getClass().getSimpleName(), remoteSocketAddress.getHostName(),
remoteSocketAddress.getPort());
}
DisconnectException ex = new DisconnectException("Connection disconnect, reply is outstanding. Operation stopped.");
try {
NettyHttpRequesterResponseHandler.this.scmpCallback.receive(ex);
} catch (Throwable throwable) {
LOGGER.error("receive exception", throwable);
}