You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-commits@jackrabbit.apache.org by mi...@apache.org on 2021/10/18 13:03:06 UTC

[jackrabbit-oak] branch 1.8 updated: OAK-9451 - Make standby.secure configurable

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

miroslav pushed a commit to branch 1.8
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


The following commit(s) were added to refs/heads/1.8 by this push:
     new ea739bb  OAK-9451 - Make standby.secure configurable
     new 0a3688b  Merge pull request #389 from kunal3112/OAK-9451
ea739bb is described below

commit ea739bbc12befa810d4f53998e8f069fe53afa22
Author: Kunal Shubham <sh...@adobe.com>
AuthorDate: Mon Oct 18 15:50:37 2021 +0530

    OAK-9451 - Make standby.secure configurable
---
 .../jackrabbit/oak/segment/standby/store/StandbyStoreService.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/standby/store/StandbyStoreService.java b/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/standby/store/StandbyStoreService.java
index e21e33c..5efead1 100644
--- a/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/standby/store/StandbyStoreService.java
+++ b/oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/standby/store/StandbyStoreService.java
@@ -177,7 +177,7 @@ public class StandbyStoreService {
             .withFileStore(fileStore)
             .withBlobChunkSize(BLOB_CHUNK_SIZE)
             .withAllowedClientIPRanges(ranges)
-            .withSecureConnection(true)
+            .withSecureConnection(secure)
             .withSSLKeyFile(sslKeyFile)
             .withSSLChainFile(sslChainFile)
             .withSSLClientValidation(sslValidateClient)