This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.0 by this push:
new 0c39f23 fix broadcast log format bug (#8484)
0c39f23 is described below
commit 0c39f233089ebd9d8502abadbb3e970a02daf922
Author: 肖恒 <[email protected]>
AuthorDate: Sun Aug 15 22:11:43 2021 +0800
fix broadcast log format bug (#8484)
---
.../org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java
b/dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java
index af58847..cf7520f 100644
---
a/dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java
+++
b/dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java
@@ -96,7 +96,7 @@ public class BroadcastClusterInvoker<T> extends
AbstractClusterInvoker<T> {
String.format("The number of BroadcastCluster call
failures has reached the threshold %s", failThresholdIndex));
} else {
logger.debug(String.format("The number of BroadcastCluster
call failures has not reached the threshold %s, fail size is %s",
- failIndex));
+ failThresholdIndex, failIndex));
}
throw exception;
}