This is an automated email from the ASF dual-hosted git repository. zhaoyuguang pushed a commit to branch zhaoyuguang/zk_test in repository https://gitbox.apache.org/repos/asf/skywalking.git
commit 4d81cb906dd13ea6769c97be256a325359f36371 Author: 赵禹光 <zhaoyugu...@apache.org> AuthorDate: Wed Dec 25 14:19:53 2019 +0800 fix bug --- .../apm/testcase/zookeeper/controller/ZookeeperController.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/plugin/scenarios/zookeeper-scenario/src/main/java/org/apache/skywalking/apm/testcase/zookeeper/controller/ZookeeperController.java b/test/plugin/scenarios/zookeeper-scenario/src/main/java/org/apache/skywalking/apm/testcase/zookeeper/controller/ZookeeperController.java index 9e15710..c4cf470 100644 --- a/test/plugin/scenarios/zookeeper-scenario/src/main/java/org/apache/skywalking/apm/testcase/zookeeper/controller/ZookeeperController.java +++ b/test/plugin/scenarios/zookeeper-scenario/src/main/java/org/apache/skywalking/apm/testcase/zookeeper/controller/ZookeeperController.java @@ -47,8 +47,7 @@ public class ZookeeperController { @RequestMapping("/healthCheck") @ResponseBody - public String healthCheck() throws KeeperException, InterruptedException { - zooKeeper.delete("/path", -1); + public String healthCheck() { return "healthCheck"; }