This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-1.1-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.1-lts by this push: new ba4ea0382f [fix](log) fix wrong log introduced by pr 14221 (#14265) ba4ea0382f is described below commit ba4ea0382ff9f6037c05dd11cd4e5a763afe1fcb Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Tue Nov 15 10:42:22 2022 +0800 [fix](log) fix wrong log introduced by pr 14221 (#14265) --- .../main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java b/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java index c6563e2d5b..6dcd81b23e 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java +++ b/fe/fe-core/src/main/java/org/apache/doris/transaction/DatabaseTransactionMgr.java @@ -552,7 +552,7 @@ public class DatabaseTransactionMgr { + "while error backends {} error replica info {}", transactionState.getTransactionId(), tablet.getId(), successReplicaNum, quorumReplicaNum, Joiner.on(",").join(errorBackendIdsForTablet), - errorBackendIdsForTablet); + errorReplicaInfo); throw new TabletQuorumFailedException(transactionState.getTransactionId(), tablet.getId(), successReplicaNum, quorumReplicaNum, errorBackendIdsForTablet); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org