From c03de043afa75c89863fb3fc0f6b9917ce7bfd2e Mon Sep 17 00:00:00 2001 From: agensi <921818067@qq.com> Date: Wed, 13 Nov 2019 18:53:07 +0800 Subject: [PATCH] dashboard: fix "notZero" param typo of "clusterNode" command in SentinelApiClient (#1155) --- .../csp/sentinel/dashboard/client/SentinelApiClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/SentinelApiClient.java b/sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/SentinelApiClient.java index 5db63510..ec27e26c 100755 --- a/sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/SentinelApiClient.java +++ b/sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/client/SentinelApiClient.java @@ -393,7 +393,7 @@ public class SentinelApiClient { * @return */ public List fetchClusterNodeOfMachine(String ip, int port, boolean includeZero) { - String type = "noZero"; + String type = "notZero"; if (includeZero) { type = "zero"; }