This is an automated email from the ASF dual-hosted git repository.
horizonzy 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 8e78420 fix #958 (#959)
8e78420 is described below
commit 8e78420c6d595ecb381c501113ceccbc89c918ee
Author: Wang Chengming <[email protected]>
AuthorDate: Mon Sep 20 10:44:04 2021 +0800
fix #958 (#959)
---
content/zh/docsv2.7/dev/source/cluster.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/zh/docsv2.7/dev/source/cluster.md
b/content/zh/docsv2.7/dev/source/cluster.md
index dc1eddd..6f9a1b4 100644
--- a/content/zh/docsv2.7/dev/source/cluster.md
+++ b/content/zh/docsv2.7/dev/source/cluster.md
@@ -416,7 +416,7 @@ public class FailbackClusterInvoker<T> extends
AbstractClusterInvoker<T> {
#### 3.2.3 FailfastClusterInvoker
-FailfastClusterInvoker 只会进行一次调用,失败后立即抛出异常。适用于幂等操作,比如新增记录。源码如下:
+FailfastClusterInvoker 只会发起一次调用,失败后立即抛出异常。通常用于非幂等性的写操作,比如新增记录。源码如下:
```java
public class FailfastClusterInvoker<T> extends AbstractClusterInvoker<T> {