Skip to content

Commit b142cdb

Browse files
authored
fix String.format lack of arg which is from BroadcastClusterInvoker link #8341 (#8348)
1 parent 41e989b commit b142cdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dubbo-cluster/src/main/java/org/apache/dubbo/rpc/cluster/support/BroadcastClusterInvoker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public Result doInvoke(final Invocation invocation, List<Invoker<T>> invokers, L
9696
String.format("The number of BroadcastCluster call failures has reached the threshold %s", failThresholdIndex));
9797
} else {
9898
logger.debug(String.format("The number of BroadcastCluster call failures has not reached the threshold %s, fail size is %s",
99-
failIndex));
99+
failThresholdIndex, failIndex));
100100
}
101101
throw exception;
102102
}

0 commit comments

Comments
 (0)