You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by zh...@apache.org on 2019/12/25 06:20:07 UTC

[skywalking] branch zhaoyuguang/zk_test updated: fix bug

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


The following commit(s) were added to refs/heads/zhaoyuguang/zk_test by this push:
     new 4d81cb9  fix bug
4d81cb9 is described below

commit 4d81cb906dd13ea6769c97be256a325359f36371
Author: 赵禹光 <zh...@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";
     }