if (localConn != null) {
if (this.log.isDebugEnabled()) {
this.log.debug("[exchange: " + this.id + "] aborting connection " + localConn);
}
try {
localConn.abortConnection();
} catch (final IOException ioex) {
this.log.debug("I/O error releasing connection", ioex);
}
}
try {