This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new aa3ff1ebf72 [fix](fe) Fix `FrontendHbResponse` serialization 
compatibility problem (#30337)
aa3ff1ebf72 is described below

commit aa3ff1ebf72cb53ae2f60a32f79511050d9ed373
Author: Lei Zhang <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to