You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ta...@apache.org on 2021/12/21 02:04:49 UTC

[hadoop] branch trunk updated: HDFS-16385. Fix Datanode retrieve slownode information bug. (#3803)

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

tasanuma pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 9420cb6  HDFS-16385. Fix Datanode retrieve slownode information bug. (#3803)
9420cb6 is described below

commit 9420cb6f8a333303c60de422a35de541592c4da1
Author: Jackson Wang <39...@users.noreply.github.com>
AuthorDate: Tue Dec 21 10:04:02 2021 +0800

    HDFS-16385. Fix Datanode retrieve slownode information bug. (#3803)
    
    Reviewed-by: Symious <yi...@gmail.com>
    Reviewed-by: Hui Fei <fe...@apache.org>
    Reviewed-by: litao <to...@gmail.com>
---
 .../hadoop/hdfs/protocolPB/DatanodeProtocolServerSideTranslatorPB.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocolPB/DatanodeProtocolServerSideTranslatorPB.java b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocolPB/DatanodeProtocolServerSideTranslatorPB.java
index 89cc6c7..08a777b 100644
--- a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocolPB/DatanodeProtocolServerSideTranslatorPB.java
+++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/protocolPB/DatanodeProtocolServerSideTranslatorPB.java
@@ -152,6 +152,7 @@ public class DatanodeProtocolServerSideTranslatorPB implements
     }
 
     builder.setFullBlockReportLeaseId(response.getFullBlockReportLeaseId());
+    builder.setIsSlownode(response.getIsSlownode());
     return builder.build();
   }
 

---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org