romain-pfund commented on code in PR #13507: URL: https://github.com/apache/camel/pull/13507#discussion_r1526368465
########## components/camel-azure/camel-azure-servicebus/src/main/java/org/apache/camel/component/azure/servicebus/ServiceBusConsumer.java: ########## @@ -228,8 +233,23 @@ 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() && (Objects.isNull(getConfiguration().getSubQueue()) || Review Comment: ok thanks I'll check. First time here so happy discover new things -- 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