You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@brpc.apache.org by lo...@apache.org on 2022/01/22 17:19:49 UTC

[incubator-brpc] branch master updated: docs(circuit_breaker): fix word error

This is an automated email from the ASF dual-hosted git repository.

lorinlee pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-brpc.git


The following commit(s) were added to refs/heads/master by this push:
     new afc33b5  docs(circuit_breaker): fix word error
     new f1cbe0a  Merge pull request #1665 from JiaoZiLang/master
afc33b5 is described below

commit afc33b595bcea413b42fa79dfa1880f5d3f3629e
Author: jiaozilang <qq...@gmail.com>
AuthorDate: Sat Jan 8 23:13:37 2022 +0800

    docs(circuit_breaker): fix word error
---
 docs/cn/circuit_breaker.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/cn/circuit_breaker.md b/docs/cn/circuit_breaker.md
index cfdafed..bf7b480 100644
--- a/docs/cn/circuit_breaker.md
+++ b/docs/cn/circuit_breaker.md
@@ -26,7 +26,7 @@ option.enable_circuit_breaker = true;
 2. 之后根据ema_latency更新max_error_cost: max_error_cost = window_size * max_error_rate * ema_latency。
 
 
-上面的window_size和max_error_rate均为gflag所指定的常量, alpha则是一个略小于1的常量,其值由window_size和下面提到的circuit_breaker_epsilon_value决定。latency则指该次请求所的耗时。
+上面的window_size和max_error_rate均为gflag所指定的常量, alpha则是一个略小于1的常量,其值由window_size和下面提到的circuit_breaker_epsilon_value决定。latency则指该次请求的耗时。
 
 **每次请求返回之后,都会更新acc_error_cost:**
 1. 如果请求处理成功,则令 acc_error_cost = alpha * acc_error_cost 

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@brpc.apache.org
For additional commands, e-mail: dev-help@brpc.apache.org