This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 3d26f35c97 [branch-2.0] remove %s to avoid MissingFormatArgumentException 3d26f35c97 is described below commit 3d26f35c97ae797c0cef7b5ecba7816cffede602 Author: morningman <morning...@163.com> AuthorDate: Tue Aug 1 20:37:19 2023 +0800 [branch-2.0] remove %s to avoid MissingFormatArgumentException fix bug introduced from #22142 --- fe/fe-core/src/main/java/org/apache/doris/qe/MasterOpExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/MasterOpExecutor.java b/fe/fe-core/src/main/java/org/apache/doris/qe/MasterOpExecutor.java index c8c158ce87..6e3d9d268c 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/MasterOpExecutor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/MasterOpExecutor.java @@ -117,7 +117,7 @@ public class MasterOpExecutor { // may throw NullPointerException. add err msg throw new Exception("Failed to get master client.", e); } - final StringBuilder forwardMsg = new StringBuilder("forward to master FE %s" + thriftAddress.toString()); + final StringBuilder forwardMsg = new StringBuilder("forward to master FE " + thriftAddress.toString()); if (!params.isSyncJournalOnly()) { forwardMsg.append(", statement id: ").append(ctx.getStmtId()); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org