This is an automated email from the ASF dual-hosted git repository.
huxing pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 5fd8a83 [UPDATE] zkclient has remove in 2.7.x(#370)
5fd8a83 is described below
commit 5fd8a83e5bb033053d1cd918433ecb8ee2851e6c
Author: huaifeng <[email protected]>
AuthorDate: Mon May 20 16:50:35 2019 +0800
[UPDATE] zkclient has remove in 2.7.x(#370)
---
docs/en-us/user/demos/local-call.md | 2 +-
docs/en-us/user/references/registry/zookeeper.md | 2 ++
docs/zh-cn/user/references/registry/zookeeper.md | 2 ++
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/docs/en-us/user/demos/local-call.md
b/docs/en-us/user/demos/local-call.md
index 0c2382f..fb6a552 100644
--- a/docs/en-us/user/demos/local-call.md
+++ b/docs/en-us/user/demos/local-call.md
@@ -36,7 +36,7 @@ or
<dubbo:service injvm="true" .../>
```
-Note: Dubbo is exposed locally from `2.2.0` by default. It can be referenced
locally without any configuration. If you don't want the service to be exposed
remotely, you only need to set the protocol to injvm in the provider.
+Note: Dubbo services are exposed locally from `2.2.0` by default. It can be
referenced locally without any configuration. If you don't want the service to
be exposed remotely, you only need to set the protocol to injvm in the provider.
## Automatically exposed, local service references
diff --git a/docs/en-us/user/references/registry/zookeeper.md
b/docs/en-us/user/references/registry/zookeeper.md
index f680156..b81a2d0 100644
--- a/docs/en-us/user/references/registry/zookeeper.md
+++ b/docs/en-us/user/references/registry/zookeeper.md
@@ -39,6 +39,8 @@ Dubbo supports two zookeeper clients: zkclient and curator:
Since `2.2.0` dubbo uses zkclient by default, in order to improve the
robustness. [zkclient](https://github.com/sgroschupf/zkclient) is a zookeeper
client implementation open-sourced by Datameer.
+**Note: The implementation of zkclient has been removed in the 2.7.x version.
If you want to use the zkclient client, you need to extend it yourself.**
+
Default configuration:
```xml
diff --git a/docs/zh-cn/user/references/registry/zookeeper.md
b/docs/zh-cn/user/references/registry/zookeeper.md
index d63b7da..d73defc 100644
--- a/docs/zh-cn/user/references/registry/zookeeper.md
+++ b/docs/zh-cn/user/references/registry/zookeeper.md
@@ -36,6 +36,8 @@
Dubbo 支持 zkclient 和 curator 两种 Zookeeper 客户端实现:
+**注意:在2.7.x的版本中已经移除了zkclient的实现,如果要使用zkclient客户端,需要自行拓展**
+
### 使用 zkclient 客户端
从 `2.2.0` 版本开始缺省为 zkclient 实现,以提升 zookeeper
客户端的健状性。[zkclient](https://github.com/sgroschupf/zkclient) 是 Datameer 开源的一个
Zookeeper 客户端实现。