YARN-5679. TestAHSWebServices is failing (ajisakaa via rkanter)
This commit is contained in:
parent
61e30cf83c
commit
23d7d53a41
|
@ -97,7 +97,9 @@ public class AggregatedLogFormat {
|
|||
*/
|
||||
private static final FsPermission APP_LOG_FILE_UMASK = FsPermission
|
||||
.createImmutable((short) (0640 ^ 0777));
|
||||
|
||||
/** Default permission for the log file. */
|
||||
private static final FsPermission APP_LOG_FILE_PERM =
|
||||
FsPermission.getFileDefault().applyUMask(APP_LOG_FILE_UMASK);
|
||||
|
||||
static {
|
||||
RESERVED_KEYS = new HashMap<String, AggregatedLogFormat.LogKey>();
|
||||
|
@ -458,11 +460,10 @@ public class AggregatedLogFormat {
|
|||
@Override
|
||||
public FSDataOutputStream run() throws Exception {
|
||||
fc = FileContext.getFileContext(remoteAppLogFile.toUri(), conf);
|
||||
fc.setUMask(APP_LOG_FILE_UMASK);
|
||||
return fc.create(
|
||||
remoteAppLogFile,
|
||||
EnumSet.of(CreateFlag.CREATE, CreateFlag.OVERWRITE),
|
||||
new Options.CreateOpts[] {});
|
||||
Options.CreateOpts.perms(APP_LOG_FILE_PERM));
|
||||
}
|
||||
});
|
||||
} catch (InterruptedException e) {
|
||||
|
|
Loading…
Reference in New Issue