summaryrefslogtreecommitdiffstats
path: root/infra
diff options
context:
space:
mode:
authorMarek Gradzki <mgradzki@cisco.com>2017-12-11 08:42:24 +0100
committerMarek Gradzki <mgradzki@cisco.com>2017-12-11 08:42:24 +0100
commitc092ae94aad2f7cdd8ca61ca14be4166369e435e (patch)
treef185f6b2c9ee6e298e1e505b1d6747b4d420ed07 /infra
parent7a12f0259d63fb1ee5dfa902dc18e447c197474d (diff)
Do not hardcode websocket parameters in RestconfConfiguration
Change-Id: I3891eae1aac45fcd6e8adf4384c48d657998ed27 Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'infra')
-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")