You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by he...@apache.org on 2015/07/28 16:12:48 UTC

camel git commit: [CAMEL-9029] JGroups managed routes can be started too early. (cherry picked from commit 22b3a36)

Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x 3b38ddc3f -> 9acec2e7a


[CAMEL-9029] JGroups managed routes can be started too early.
(cherry picked from commit 22b3a36)


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

Branch: refs/heads/camel-2.15.x
Commit: 9acec2e7ab61ad7d8f4a79a5167c212bd9176baf
Parents: 3b38ddc
Author: Henryk Konsek <he...@gmail.com>
Authored: Tue Jul 28 16:09:30 2015 +0200
Committer: Henryk Konsek <he...@gmail.com>
Committed: Tue Jul 28 16:12:42 2015 +0200

----------------------------------------------------------------------
 .../java/org/apache/camel/component/jgroups/JGroupsFilters.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/9acec2e7/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsFilters.java
----------------------------------------------------------------------
diff --git a/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsFilters.java b/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsFilters.java
index 468feeb..4711198 100644
--- a/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsFilters.java
+++ b/components/camel-jgroups/src/main/java/org/apache/camel/component/jgroups/JGroupsFilters.java
@@ -63,7 +63,7 @@ public final class JGroupsFilters {
                     return channelAddress.equals(coordinatorNodeAddress);
                 }
                 LOG.debug("Body {} is not an instance of org.jgroups.View . Skipping filter.", body);
-                return true;
+                return false;
             }
         };
     }