This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 7fae7d6 Fix issue #903 (#925)
7fae7d6 is described below
commit 7fae7d6ddff531000bc13fe034faf339a1daf6f9
Author: Wang Chengming <[email protected]>
AuthorDate: Fri Sep 3 21:11:50 2021 +0800
Fix issue #903 (#925)
* fix issue #903
* fix issue #903
---
content/zh/docsv2.7/dev/source/cluster.md | 2 +-
content/zh/docsv2.7/user/configuration/api.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/zh/docsv2.7/dev/source/cluster.md
b/content/zh/docsv2.7/dev/source/cluster.md
index a27ae4b..dc1eddd 100644
--- a/content/zh/docsv2.7/dev/source/cluster.md
+++ b/content/zh/docsv2.7/dev/source/cluster.md
@@ -69,7 +69,7 @@ public class FailbackCluster implements Cluster {
### 3.2 Cluster Invoker 分析
-我们首先从各种 Cluster Invoker 的父类 AbstractClusterInvoker
源码开始说起。前面说过,集群工作过程可分为两个阶段,第一个阶段是在服务消费者初始化期间,这个在[服务引用]()那篇文章中分析过,就不赘述。第二个阶段是在服务消费者进行远程调用时,此时
AbstractClusterInvoker 的 invoke 方法会被调用。列举 Invoker,负载均衡等操作均会在此阶段被执行。因此下面先来看一下
invoke 方法的逻辑。
+我们首先从各种 Cluster Invoker 的父类 AbstractClusterInvoker
源码开始说起。前面说过,集群工作过程可分为两个阶段,第一个阶段是在服务消费者初始化期间,这个在[服务引用](../refer-service)那篇文章中分析过,就不赘述。第二个阶段是在服务消费者进行远程调用时,此时
AbstractClusterInvoker 的 invoke 方法会被调用。列举 Invoker,负载均衡等操作均会在此阶段被执行。因此下面先来看一下
invoke 方法的逻辑。
```java
public Result invoke(final Invocation invocation) throws RpcException {
diff --git a/content/zh/docsv2.7/user/configuration/api.md
b/content/zh/docsv2.7/user/configuration/api.md
index ba92508..f8a24b6 100644
--- a/content/zh/docsv2.7/user/configuration/api.md
+++ b/content/zh/docsv2.7/user/configuration/api.md
@@ -6,7 +6,7 @@ weight: 3
description: "以API 配置的方式来配置你的 Dubbo 应用"
---
-API
属性与配置项一对一,各属性含义,请参见:[配置参考手册](../references/xml/),比如:`ApplicationConfig.setName("xxx")`
对应 `<dubbo:application name="xxx" />` [^1]
+API
属性与配置项一对一,各属性含义,请参见:[配置参考手册](../../references/xml/),比如:`ApplicationConfig.setName("xxx")`
对应 `<dubbo:application name="xxx" />` [^1]
## 服务提供者