diff options
author | LiZi <li.zi30@zte.com.cn> | 2018-04-10 03:01:09 -0400 |
---|---|---|
committer | LiZi <li.zi30@zte.com.cn> | 2018-04-10 03:01:17 -0400 |
commit | 4fd8cf8a708aecf23bc42274ca802bc8149d187a (patch) | |
tree | e34b8c4f043602be8a716708431f10cfb53b0b8f /apiroute | |
parent | a2b84385197f629dad641bada92c2466e378e909 (diff) |
Remove the default value of check time set.
Change-Id: I44ad21772a211c343ba1e478e9093b10a746e7c3
Issue-ID: MSB-189
Signed-off-by: LiZi <li.zi30@zte.com.cn>
Diffstat (limited to 'apiroute')
-rw-r--r-- | apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java | 4 |
1 files changed, 2 insertions, 2 deletions
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; /** |