HDFS-6627. Merging change r1608940 from trunk to branch-2.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1608948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a919e86452
commit
18a54c1e16
|
@ -15,6 +15,9 @@ Release 2.6.0 - UNRELEASED
|
|||
HDFS-6638. Shorten test run time with a smaller retry timeout setting.
|
||||
(Liang Xie via cnauroth)
|
||||
|
||||
HDFS-6627. Rename DataNode#checkWriteAccess to checkReadAccess.
|
||||
(Liang Xie via cnauroth)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -2306,11 +2306,11 @@ public class DataNode extends Configured
|
|||
|
||||
@Override // ClientDataNodeProtocol
|
||||
public long getReplicaVisibleLength(final ExtendedBlock block) throws IOException {
|
||||
checkWriteAccess(block);
|
||||
checkReadAccess(block);
|
||||
return data.getReplicaVisibleLength(block);
|
||||
}
|
||||
|
||||
private void checkWriteAccess(final ExtendedBlock block) throws IOException {
|
||||
private void checkReadAccess(final ExtendedBlock block) throws IOException {
|
||||
if (isBlockTokenEnabled) {
|
||||
Set<TokenIdentifier> tokenIds = UserGroupInformation.getCurrentUser()
|
||||
.getTokenIdentifiers();
|
||||
|
|
Loading…
Reference in New Issue