aboutsummaryrefslogtreecommitdiffstats
path: root/zookeeper-common/src
diff options
context:
space:
mode:
authorHarald Musum <musum@vespa.ai>2023-12-14 18:29:37 +0100
committerGitHub <noreply@github.com>2023-12-14 18:29:37 +0100
commit2a3b518b8fcc15d3a83d0dcb46e7d02643a9627a (patch)
tree844e820e81bbfa2a9cd37b00cd74335b8c77d14d /zookeeper-common/src
parentb81bedb2aabea0a033023ff5d64857f0b15535bb (diff)
Revert "Jonmv/zk 3.9.1 clients 2"
Diffstat (limited to 'zookeeper-common/src')
-rw-r--r--zookeeper-common/src/main/java/com/yahoo/vespa/zookeeper/tls/VespaZookeeperTlsContextUtils.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/zookeeper-common/src/main/java/com/yahoo/vespa/zookeeper/tls/VespaZookeeperTlsContextUtils.java b/zookeeper-common/src/main/java/com/yahoo/vespa/zookeeper/tls/VespaZookeeperTlsContextUtils.java
deleted file mode 100644
index 78de6c61e17..00000000000
--- a/zookeeper-common/src/main/java/com/yahoo/vespa/zookeeper/tls/VespaZookeeperTlsContextUtils.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.yahoo.vespa.zookeeper.tls;
-
-import com.yahoo.security.tls.ConfigFileBasedTlsContext;
-import com.yahoo.security.tls.TlsContext;
-import com.yahoo.security.tls.TransportSecurityUtils;
-import com.yahoo.vespa.defaults.Defaults;
-
-import java.nio.file.Files;
-import java.nio.file.Path;
-import java.util.Optional;
-
-/**
- * @author jonmv
- */
-public class VespaZookeeperTlsContextUtils {
-
- private static final Path ZOOKEEPER_TLS_CONFIG_FILE = Path.of(Defaults.getDefaults().underVespaHome("var/zookeeper/conf/tls.conf.json"));
- private static final TlsContext tlsContext = Files.exists(ZOOKEEPER_TLS_CONFIG_FILE)
- ? new ConfigFileBasedTlsContext(ZOOKEEPER_TLS_CONFIG_FILE, TransportSecurityUtils.getInsecureAuthorizationMode())
- : TransportSecurityUtils.getSystemTlsContext().orElse(null);
-
- public static Optional<TlsContext> tlsContext() {
- return Optional.ofNullable(tlsContext);
- }
-
-}