eolivelli commented on a change in pull request #10088:
URL: https://github.com/apache/pulsar/pull/10088#discussion_r604217072
##########
File path:
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
##########
@@ -1245,7 +1246,8 @@ protected void handleProducer(final CommandProducer
cmdProducer) {
cause = new TopicNotFoundException("Topic Not
Found.");
}
- if (!(cause instanceof
ServiceUnitNotReadyException)) {
+ if (!(cause instanceof
ServiceUnitNotReadyException)
+ &&
(!Exceptions.isExceptionPresentInChain(cause, ManagedLedgerException.class))) {
Review comment:
good idea. let me update the patch
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]