HDFS-16073. Remove redundant RPC requests for getFileLinkInfo in ClientNamenodeProtocolTranslatorPB. Contributed by lei w.
This commit is contained in:
parent
9a6a11c452
commit
2b304ad645
@ -996,9 +996,7 @@ public HdfsFileStatus getFileLinkInfo(String src) throws IOException {
|
||||
.setSrc(src).build();
|
||||
try {
|
||||
GetFileLinkInfoResponseProto result = rpcProxy.getFileLinkInfo(null, req);
|
||||
return result.hasFs() ?
|
||||
PBHelperClient.convert(rpcProxy.getFileLinkInfo(null, req).getFs()) :
|
||||
null;
|
||||
return result.hasFs() ? PBHelperClient.convert(result.getFs()) : null;
|
||||
} catch (ServiceException e) {
|
||||
throw ProtobufHelper.getRemoteException(e);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user