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

gavinchou 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 141f9424cc7 [fix](fe)fix fe info lost start time (#56451)
141f9424cc7 is described below

commit 141f9424cc7e148273d1cca4af62bc67285de6c7
Author: koarz <[email protected]>
AuthorDate: Fri Sep 26 13:35:56 2025 +0800

    [fix](fe)fix fe info lost start time (#56451)
    
    before:
    ```text
    mysql> show frontends;
    +---------------+
    | LastStartTime |
    +---------------+
    | NULL          |
    +---------------+
    ```
    
    fix:
    ```text
    mysql> show frontends;
    +---------------------+
    | LastStartTime       |
    +---------------------+
    | 2025-09-25 15:24:37 |
    +---------------------+
    ```
---
 .../src/main/java/org/apache/doris/system/FrontendHbResponse.java       | 2 +-
 1 file changed, 1 insertion(+), 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 e489bb9eb1d..0bbc72008dd 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
@@ -62,7 +62,7 @@ public class FrontendHbResponse extends HeartbeatResponse 
implements Writable {
         this.replayedJournalId = replayedJournalId;
         this.hbTime = hbTime;
         this.version = version;
-        this.processUUID = processUUID;
+        this.feStartTime = feStartTime;
         this.diskInfos = diskInfos;
         this.processUUID = processUUID;
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to