You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/02 16:42:06 UTC

[camel] branch infinispan-sec created (now c1e565a)

This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch infinispan-sec
in repository https://gitbox.apache.org/repos/asf/camel.git.


      at c1e565a  CAMEL-15603 - Camel-Infinispan: Support Authentication through URI options, secure is already false by default

This branch includes the following new commits:

     new c1e565a  CAMEL-15603 - Camel-Infinispan: Support Authentication through URI options, secure is already false by default

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel] 01/01: CAMEL-15603 - Camel-Infinispan: Support Authentication through URI options, secure is already false by default

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch infinispan-sec
in repository https://gitbox.apache.org/repos/asf/camel.git

commit c1e565a89e82b577fc0f23b093fe4474493a0f42
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 2 18:41:25 2020 +0200

    CAMEL-15603 - Camel-Infinispan: Support Authentication through URI options, secure is already false by default
---
 .../org/apache/camel/component/infinispan/InfinispanConfiguration.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java b/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java
index db5fa60..7671f02 100644
--- a/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java
+++ b/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java
@@ -71,7 +71,7 @@ public class InfinispanConfiguration implements Cloneable {
     @UriParam(label = "advanced")
     private BiFunction remappingFunction;
     @UriParam(label = "common", defaultValue = "false")
-    private boolean secure = false;
+    private boolean secure;
     @UriParam(label = "common, security")
     private String username;
     @UriParam(label = "common, security", secret = true)