From 4fd8cf8a708aecf23bc42274ca802bc8149d187a Mon Sep 17 00:00:00 2001 From: LiZi Date: Tue, 10 Apr 2018 03:01:09 -0400 Subject: Remove the default value of check time set. Change-Id: I44ad21772a211c343ba1e478e9093b10a746e7c3 Issue-ID: MSB-189 Signed-off-by: LiZi --- .../src/main/java/org/onap/msb/apiroute/api/Node.java | 4 ++-- 1 file 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; /** -- cgit 1.2.3-korg