You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by ho...@apache.org on 2021/09/20 02:44:08 UTC

[dubbo-website] branch master updated: fix #958 (#959)

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 <63...@qq.com>
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> {