YARN-3358. Audit log not present while refreshing Service ACLs.

Contributed by Varun Saxena.

(cherry picked from commit ef3d66d462)
This commit is contained in:
Devaraj K 2015-05-08 12:14:10 +05:30
parent 089d420a82
commit 0d286d1041
2 changed files with 6 additions and 1 deletions

View File

@ -358,6 +358,9 @@ Release 2.7.1 - UNRELEASED
YARN-3385. Fixed a race-condition in ResourceManager's ZooKeeper based
state-store to avoid crashing on duplicate deletes. (Zhihai Xu via vinodkv)
YARN-3358. Audit log not present while refreshing Service ACLs.
(Varun Saxena via devaraj)
Release 2.7.0 - 2015-04-20
INCOMPATIBLE CHANGES

View File

@ -508,7 +508,9 @@ public RefreshServiceAclsResponse refreshServiceAcls(
conf, policyProvider);
rmContext.getResourceTrackerService().refreshServiceAcls(
conf, policyProvider);
RMAuditLogger.logSuccess(user.getShortUserName(), argName, "AdminService");
return recordFactory.newRecordInstance(RefreshServiceAclsResponse.class);
}