Return-Path: Delivered-To: apmail-hadoop-common-dev-archive@www.apache.org Received: (qmail 41687 invoked from network); 29 Jan 2010 19:28:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Jan 2010 19:28:59 -0000 Received: (qmail 30570 invoked by uid 500); 29 Jan 2010 19:28:58 -0000 Delivered-To: apmail-hadoop-common-dev-archive@hadoop.apache.org Received: (qmail 30502 invoked by uid 500); 29 Jan 2010 19:28:57 -0000 Mailing-List: contact common-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-dev@hadoop.apache.org Received: (qmail 30433 invoked by uid 99); 29 Jan 2010 19:28:57 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2010 19:28:57 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 29 Jan 2010 19:28:55 +0000 Received: from brutus.apache.org (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 9907F234C4BD for ; Fri, 29 Jan 2010 11:28:34 -0800 (PST) Message-ID: <139603801.135651264793314625.JavaMail.jira@brutus.apache.org> Date: Fri, 29 Jan 2010 19:28:34 +0000 (UTC) From: "Jakob Homan (JIRA)" To: common-dev@hadoop.apache.org Subject: [jira] Created: (HADOOP-6521) FsPermission:SetUMask not updated to use new-style umask setting. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org FsPermission:SetUMask not updated to use new-style umask setting. ----------------------------------------------------------------- Key: HADOOP-6521 URL: https://issues.apache.org/jira/browse/HADOOP-6521 Project: Hadoop Common Issue Type: Bug Reporter: Jakob Homan FsPermission: 221 /** Set the user file creation mask (umask) */ 222 public static void setUMask(Configuration conf, FsPermission umask) { 223 conf.setInt(UMASK_LABEL, umask.toShort()); 224 } Needs to be updated to not use a decimal value. This is a bug introduced by HADOOP-6234. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.