[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
This commit is contained in:
Lei Zhang
2024-01-25 10:48:08 +08:00
committed by yiguolei
parent ff47c69bf9
commit 081da1299a

View File

@ -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();
}