You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/05/30 06:43:35 UTC

[2/5] camel git commit: CAMEL-6439: Use own thread pool for routing exchanges when timeout is triggered when doing request/reply over JMS to not steal the scheduler thread or cause a potential dead-lock.

CAMEL-6439: Use own thread pool for routing exchanges when timeout is triggered when doing request/reply over JMS to not steal the scheduler thread or cause a potential dead-lock.


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

Branch: refs/heads/master
Commit: 0871e285567bb0a10b752cdbfa04c7381454364f
Parents: 681f13b
Author: Claus Ibsen <da...@apache.org>
Authored: Mon May 30 08:16:11 2016 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon May 30 08:16:11 2016 +0200

----------------------------------------------------------------------
 .../apache/camel/component/jms/reply/CorrelationTimeoutMap.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/0871e285/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/CorrelationTimeoutMap.java
----------------------------------------------------------------------
diff --git a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/CorrelationTimeoutMap.java b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/CorrelationTimeoutMap.java
index d4913ef..11bb309 100644
--- a/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/CorrelationTimeoutMap.java
+++ b/components/camel-jms/src/main/java/org/apache/camel/component/jms/reply/CorrelationTimeoutMap.java
@@ -43,7 +43,7 @@ public class CorrelationTimeoutMap extends DefaultTimeoutMap<String, ReplyHandle
         this.listener = listener;
     }
 
-    public boolean onEviction(String key, ReplyHandler value) {
+    public boolean onEviction(final String key, final ReplyHandler value) {
         try {
             if (listener != null) {
                 listener.onEviction(key);