mayurbm commented on code in PR #25771:
URL: https://github.com/apache/camel/pull/25771#discussion_r3867782597
##########
core/camel-support/src/main/java/org/apache/camel/support/AbstractExchange.java:
##########
@@ -550,7 +558,14 @@ public <T> T getOut(Class<T> type) {
}
// fallback to use type converter
- return context.getTypeConverter().convertTo(type, this, out);
+ TypeConverter tc = context.getTypeConverter();
+ if (tc == null) {
Review Comment:
Fixed. Same as getIn() — per-call-site guard reverted. The sentinel
installed by resetTypeConverter() handles this call site and all others without
any per-call-site guard.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]