From 25ba11af400956e7ff12df84fab6e41f0fd84fb6 Mon Sep 17 00:00:00 2001 From: Thomas Segismont Date: Fri, 30 Jun 2017 11:07:06 +0200 Subject: [PATCH] Fixes #31 default master protocol is https --- src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java b/src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java index 58f6baa..1525c9e 100644 --- a/src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java +++ b/src/main/java/org/jgroups/protocols/kubernetes/KUBE_PING.java @@ -60,7 +60,7 @@ public class KUBE_PING extends Discovery { @Property(description="Time (in millis) between operation attempts", systemProperty="KUBERNETES_OPERATION_SLEEP") protected long operationSleep=1000; - @Property(description="http (default) or https. Used to send the initial discovery request to the Kubernetes server", + @Property(description="https (default) or http. Used to send the initial discovery request to the Kubernetes server", systemProperty="KUBERNETES_MASTER_PROTOCOL") protected String masterProtocol="https";