summaryrefslogtreecommitdiffstats
path: root/infra/northbound
diff options
context:
space:
mode:
Diffstat (limited to 'infra/northbound')
-rw-r--r--infra/northbound/restconf/src/main/java/io/fd/honeycomb/northbound/restconf/RestconfConfiguration.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/northbound/restconf/src/main/java/io/fd/honeycomb/northbound/restconf/RestconfConfiguration.java b/infra/northbound/restconf/src/main/java/io/fd/honeycomb/northbound/restconf/RestconfConfiguration.java
index 21307a3cc..b61287db5 100644
--- a/infra/northbound/restconf/src/main/java/io/fd/honeycomb/northbound/restconf/RestconfConfiguration.java
+++ b/infra/northbound/restconf/src/main/java/io/fd/honeycomb/northbound/restconf/RestconfConfiguration.java
@@ -56,9 +56,9 @@ public class RestconfConfiguration {
@InjectConfig("restconf-truststore-password")
public Optional<String> truststorePassword;
@InjectConfig("restconf-websocket-address")
- public Optional<String> restconfWebsocketAddress = Optional.of("0.0.0.0");
+ public Optional<String> restconfWebsocketAddress;
@InjectConfig("restconf-websocket-port")
- public Optional<Integer> restconfWebsocketPort = Optional.of(7779);
+ public Optional<Integer> restconfWebsocketPort;
@InjectConfig("restconf-root-path")
public Optional<String> restconfRootPath = Optional.of("/restconf");
@InjectConfig("restconf-pool-max-size")