[ 
https://issues.apache.org/jira/browse/HADOOP-13315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15373991#comment-15373991
 ] 

John Zhuge commented on HADOOP-13315:
-------------------------------------

Thanks [~eddyxu]!

> FileContext#umask is not initialized properly
> ---------------------------------------------
>
>                 Key: HADOOP-13315
>                 URL: https://issues.apache.org/jira/browse/HADOOP-13315
>             Project: Hadoop Common
>          Issue Type: Bug
>    Affects Versions: 2.6.0
>            Reporter: John Zhuge
>            Assignee: John Zhuge
>            Priority: Minor
>             Fix For: 2.8.0, 2.9.0, 3.0.0-alpha1
>
>         Attachments: HADOOP-13315.001.patch
>
>
> Notice field {{umask}} is not set to parameter {{theUmask}} and {{theUmask}} 
> is unused.
> {code:title=FileContext.java}
>   private FileContext(final AbstractFileSystem defFs,
>     final FsPermission theUmask, final Configuration aConf) {
>     defaultFS = defFs;
>     umask = FsPermission.getUMask(aConf);
>     conf = aConf;
> ...
>   public static FileContext getFileContext(final AbstractFileSystem defFS,
>                     final Configuration aConf) {
>     return new FileContext(defFS, FsPermission.getUMask(aConf), aConf);
>   }
> {code}
> Proposal:
> * Set {{umask}} to {{theUmask}}. Since the only caller {{getFileContext}} 
> already passes the same value in {{theUmask}}, there is no change in behavior.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to