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.git


The following commit(s) were added to refs/heads/master by this push:
     new b142cdb  fix String.format lack of arg which is from 
BroadcastClusterInvoker link #8341 (#8348)
b142cdb is described below

commit b142cdb216911b5fedcbd60fdde1aaba75383a3b
Author: xiaoheng1 <[email protected]>
AuthorDate: Tue Jul 27 11:11:11 2021 +0800

    fix String.format lack of arg which is from BroadcastClusterInvoker link 
#8341 (#8348)
---
 .../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 fcfb132..06ad245 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;
         }

Reply via email to