HDFS-6580. FSNamesystem.mkdirsInt should call the getAuditFileInfo() wrapper. Contributed bu Zhilei Xu.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1604704 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e8ca648005
commit
a90a8b26e9
@ -694,6 +694,9 @@ Release 2.5.0 - UNRELEASED
|
||||
HDFS-6222. Remove background token renewer from webhdfs.
|
||||
(Rushabh Shah and Daryn Sharp via cnauroth)
|
||||
|
||||
HDFS-6580. FSNamesystem.mkdirsInt should call the getAuditFileInfo()
|
||||
wrapper. (Zhilei Xu via wheat9)
|
||||
|
||||
BREAKDOWN OF HDFS-2006 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-6299. Protobuf for XAttr and client-side implementation. (Yi Liu via umamahesh)
|
||||
|
@ -3739,7 +3739,7 @@ private boolean mkdirsInt(String src, PermissionStatus permissions,
|
||||
src = FSDirectory.resolvePath(src, pathComponents, dir);
|
||||
status = mkdirsInternal(pc, src, permissions, createParent);
|
||||
if (status) {
|
||||
resultingStat = dir.getFileInfo(src, false);
|
||||
resultingStat = getAuditFileInfo(src, false);
|
||||
}
|
||||
} finally {
|
||||
writeUnlock();
|
||||
|
Loading…
Reference in New Issue
Block a user