From: LiZi
Date: Tue, 10 Apr 2018 07:01:09 +0000 (-0400)
Subject: Remove the default value of check time set.
X-Git-Tag: v1.1.0~4
X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F87%2F41887%2F1;p=msb%2Fapigateway.git
Remove the default value of check time set.
Change-Id: I44ad21772a211c343ba1e478e9093b10a746e7c3
Issue-ID: MSB-189
Signed-off-by: LiZi
---
diff --git a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java
index 3c7bb1a..deb7036 100644
--- a/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java
+++ b/apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java
@@ -38,10 +38,10 @@ public class Node implements Serializable {
private String checkUrl = "";
// TCP or HTTP health check Interval,Unit: second", example = "10s"
- private String checkInterval = "10s";
+ private String checkInterval;
// TCP or HTTP health check TimeOut,Unit: second", example = "10s"
- private String checkTimeOut = "10s";
+ private String checkTimeOut;
private Boolean tls_skip_verify = true;
/**