HDFS-16385. Fix Datanode retrieve slownode information bug. (#3803)

Reviewed-by: Symious <yiyang0203@gmail.com>
Reviewed-by: Hui Fei <ferhui@apache.org>
Reviewed-by: litao <tomleescut@gmail.com>
This commit is contained in:
Jackson Wang 2021-12-21 10:04:02 +08:00 committed by GitHub
parent 746b328554
commit 9420cb6f8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -152,6 +152,7 @@ public HeartbeatResponseProto sendHeartbeat(RpcController controller,
}
builder.setFullBlockReportLeaseId(response.getFullBlockReportLeaseId());
builder.setIsSlownode(response.getIsSlownode());
return builder.build();
}