oscerd commented on code in PR #13507: URL: https://github.com/apache/camel/pull/13507#discussion_r1526298481
########## components/camel-azure/camel-azure-servicebus/src/main/java/org/apache/camel/component/azure/servicebus/ServiceBusConsumer.java: ########## @@ -228,8 +232,21 @@ public void onFailure(Exchange exchange) { if (cause != null) { getExceptionHandler().handleException("Error during processing exchange.", exchange, cause); } + if (!getConfiguration().isDisableAutoComplete()) { - clientWrapper.abandon(message).subscribeOn(Schedulers.boundedElastic()).subscribe(); + if (getConfiguration().isEnableDeadLettering()) { Review Comment: I think you need also to double check if there is actually a subqueue in your client instance. -- 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. To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org