This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 081da1299a98f8de788de0b643bf50dbe6453b14 Author: Lei Zhang <27994433+swjtu-zhang...@users.noreply.github.com> AuthorDate: Thu Jan 25 10:48:08 2024 +0800 [fix](fe) Fix `FrontendHbResponse` serialization compatibility problem (#30337) * Between branch-1.2-lts and branch-2.1, `FrontendHbResponse` has upgrade compatiblity problem, because `arrowFlightSqlPort` field, only metaVerserion less than FeMetaVersion.VERSION_121 will call `FrontendHbResponse.readField` * Introduced by https://github.com/apache/doris/pull/24314 --- fe/fe-core/src/main/java/org/apache/doris/system/FrontendHbResponse.java | 1 - 1 file changed, 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/system/FrontendHbResponse.java b/fe/fe-core/src/main/java/org/apache/doris/system/FrontendHbResponse.java index c9afcef49b3..a984943ff6e 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/system/FrontendHbResponse.java +++ b/fe/fe-core/src/main/java/org/apache/doris/system/FrontendHbResponse.java @@ -120,7 +120,6 @@ public class FrontendHbResponse extends HeartbeatResponse implements Writable { name = Text.readString(in); queryPort = in.readInt(); rpcPort = in.readInt(); - arrowFlightSqlPort = in.readInt(); replayedJournalId = in.readLong(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org