Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
resolved comment
Browse files Browse the repository at this point in the history
  • Loading branch information
heesung-sn committed Nov 6, 2023
1 parent c0eec1e commit c30eae1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -814,13 +814,13 @@ protected void handleCloseProducer(CommandCloseProducer closeProducer) {
remoteAddress, closeProducer.getProducerId(), uri);
producer.getConnectionHandler().connectionClosed(
this, Optional.of(0L), Optional.of(uri));
} catch (URISyntaxException e) {
} catch (Throwable e) {
log.error("[{}] Invalid redirect url {}/{} for {}", remoteAddress,
closeProducer.hasAssignedBrokerServiceUrl()
? closeProducer.getAssignedBrokerServiceUrl() : "",
closeProducer.hasAssignedBrokerServiceUrlTls()
? closeProducer.getAssignedBrokerServiceUrlTls() : "",
closeProducer.getRequestId());
closeProducer.getRequestId(), e);
producer.connectionClosed(this);
}
} else {
Expand Down

0 comments on commit c30eae1

Please sign in to comment.