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/01/15 12:26:26 UTC

[3/3] camel git commit: CAMEL-9509: camel-cometd - Set the option to false to make it work out of the box.

CAMEL-9509: camel-cometd - Set the option to false to make it work out of the box.


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

Branch: refs/heads/camel-2.15.x
Commit: b8f18ea6b9e7d4c569be3c20da2ab6c1477c8e84
Parents: b804f07
Author: Claus Ibsen <da...@apache.org>
Authored: Fri Jan 15 12:24:43 2016 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Fri Jan 15 12:26:07 2016 +0100

----------------------------------------------------------------------
 .../java/org/apache/camel/component/cometd/CometdEndpoint.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/b8f18ea6/components/camel-cometd/src/main/java/org/apache/camel/component/cometd/CometdEndpoint.java
----------------------------------------------------------------------
diff --git a/components/camel-cometd/src/main/java/org/apache/camel/component/cometd/CometdEndpoint.java b/components/camel-cometd/src/main/java/org/apache/camel/component/cometd/CometdEndpoint.java
index c83550e..f1aaf2a 100644
--- a/components/camel-cometd/src/main/java/org/apache/camel/component/cometd/CometdEndpoint.java
+++ b/components/camel-cometd/src/main/java/org/apache/camel/component/cometd/CometdEndpoint.java
@@ -69,8 +69,8 @@ public class CometdEndpoint extends DefaultEndpoint {
     private String allowedOrigins;
     @UriParam
     private String filterPath;
-    @UriParam(defaultValue = "true")
-    private boolean disconnectLocalSession = true;
+    @UriParam
+    private boolean disconnectLocalSession;
 
     public CometdEndpoint(CometdComponent component, String uri, String remaining, Map<String, Object> parameters) {
         super(uri, component);