Fix the CSIT failure caused by the health check 61/38461/2
authorLiZi <li.zi30@zte.com.cn>
Mon, 26 Mar 2018 08:59:43 +0000 (04:59 -0400)
committerLiZi <li.zi30@zte.com.cn>
Mon, 26 Mar 2018 09:10:29 +0000 (05:10 -0400)
Change-Id: I7eec10e5e66c8ca82ec7123e402bc94eb86ed23d
Issue-ID: MSB-186
Signed-off-by: LiZi <li.zi30@zte.com.cn>
apiroute/apiroute-service/src/main/java/org/onap/msb/apiroute/api/Node.java

index 4c1e553..eab8418 100644 (file)
@@ -27,13 +27,12 @@ public class Node implements Serializable {
     @ApiModelProperty(required = true)
     private String port;
 
-    private String status = "passing"; // 实例健康检查状态
+    private String status = "passing"; 
 
     private int ttl = -1;
 
-    // 健康检查参数
     // health check type, allowableValues = "HTTP,TCP", example = "HTTP")
-    private String checkType = "HTTP";
+    private String checkType = "";
     // health check url, example for http "http://192.168.0.2:80/heallth", example for tcp
     // "192.168.1.100:80"
     private String checkUrl = "";