[
https://issues.apache.org/jira/browse/CAMEL-11139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15965810#comment-15965810
]
ASF GitHub Bot commented on CAMEL-11139:
----------------------------------------
GitHub user tdiesler opened a pull request:
https://github.com/apache/camel/pull/1619
[CAMEL-11139] ClassNotFoundException may silently be ignored in InPro…
…ducer
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/tdiesler/camel CAMEL-11139m
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/camel/pull/1619.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #1619
----
commit a8ff1af635ef982facdba7863c22a0d113153edb
Author: Thomas Diesler <[email protected]>
Date: 2017-04-12T12:43:39Z
[CAMEL-11139] ClassNotFoundException may silently be ignored in InProducer
----
> ClassNotFoundException may silently be ignored in InProducer
> ------------------------------------------------------------
>
> Key: CAMEL-11139
> URL: https://issues.apache.org/jira/browse/CAMEL-11139
> Project: Camel
> Issue Type: Bug
> Affects Versions: 2.18.3
> Reporter: Thomas Diesler
> Assignee: Thomas Diesler
> Fix For: 2.18.4, 2.19.0
>
>
> [ProducerCache.doInProducer()|https://github.com/apache/camel/blob/master/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java#L348]
> may be called with null exchange.
> The javadoc says
> {code}
> /**
> * Sends an exchange to an endpoint using a supplied callback, using the
> synchronous processing.
> * <p/>
> * If an exception was thrown during processing, it would be set on the
> given Exchange
> *
> * @param endpoint the endpoint to send the exchange to
> * @param exchange the exchange, can be <tt>null</tt> if so then create
> a new exchange from the producer
> * @param pattern the exchange pattern, can be <tt>null</tt>
> * @param callback the callback
> * @return the response from the callback
> * @see #doInAsyncProducer(org.apache.camel.Endpoint,
> org.apache.camel.Exchange, org.apache.camel.ExchangePattern,
> org.apache.camel.AsyncCallback, org.apache.camel.AsyncProducerCallback)
> */
> public <T> T doInProducer(Endpoint endpoint, Exchange exchange,
> ExchangePattern pattern, ProducerCallback<T> callback) {
> {code}
> The exchange is however never created, which may result in a null return from
> ProducerTemplate and a possible exception silently being ignored.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)