Repository: camel
Updated Branches:
  refs/heads/camel-2.17.x bd221e8b8 -> 96fc48c3e
  refs/heads/camel-2.18.x bb68f9659 -> 33dd5eb61
  refs/heads/master df1cda698 -> 67ab9a972


[CAMEL-11139] ClassNotFoundException may silently be ignored in InProducer


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d6cdc99b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d6cdc99b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d6cdc99b

Branch: refs/heads/master
Commit: d6cdc99b5fa79e03fdf79d9b3e98858399c7be79
Parents: df1cda6
Author: Thomas Diesler <[email protected]>
Authored: Wed Apr 12 14:43:39 2017 +0200
Committer: Claus Ibsen <[email protected]>
Committed: Wed Apr 12 20:54:22 2017 +0200

----------------------------------------------------------------------
 camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d6cdc99b/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java
----------------------------------------------------------------------
diff --git a/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java 
b/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java
index 1062029..bfd20f0 100644
--- a/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java
+++ b/camel-core/src/main/java/org/apache/camel/impl/ProducerCache.java
@@ -504,7 +504,7 @@ public class ProducerCache extends ServiceSupport {
                     // lets populate using the processor callback
                     try {
                         processor.process(exchange);
-                    } catch (Exception e) {
+                    } catch (Throwable e) {
                         // populate failed so return
                         exchange.setException(e);
                         return exchange;

Reply via email to