Return-Path: X-Original-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ambari-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 955549824 for ; Tue, 21 May 2013 22:56:06 +0000 (UTC) Received: (qmail 85009 invoked by uid 500); 21 May 2013 22:56:07 -0000 Delivered-To: apmail-incubator-ambari-commits-archive@incubator.apache.org Received: (qmail 84952 invoked by uid 500); 21 May 2013 22:56:06 -0000 Mailing-List: contact ambari-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@incubator.apache.org Delivered-To: mailing list ambari-commits@incubator.apache.org Received: (qmail 84943 invoked by uid 99); 21 May 2013 22:56:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 May 2013 22:56:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 21 May 2013 22:56:04 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id BAAFA238897A; Tue, 21 May 2013 22:55:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1485005 - in /incubator/ambari/trunk: CHANGES.txt ambari-web/app/data/config_properties.js Date: Tue, 21 May 2013 22:55:43 -0000 To: ambari-commits@incubator.apache.org From: jaimin@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130521225543.BAAFA238897A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jaimin Date: Tue May 21 22:55:43 2013 New Revision: 1485005 URL: http://svn.apache.org/r1485005 Log: Incorrect unit displayed for "dfs.datanode.du.reserved" and "fs.checkpoint.size". (jaimin) Modified: incubator/ambari/trunk/CHANGES.txt incubator/ambari/trunk/ambari-web/app/data/config_properties.js Modified: incubator/ambari/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1485005&r1=1485004&r2=1485005&view=diff ============================================================================== --- incubator/ambari/trunk/CHANGES.txt (original) +++ incubator/ambari/trunk/CHANGES.txt Tue May 21 22:55:43 2013 @@ -870,6 +870,9 @@ Trunk (unreleased changes): BUG FIXES + AMBARI-2176. Incorrect unit displayed for "dfs.datanode.du.reserved" and + "fs.checkpoint.size". (jaimin) + AMBARI-2175. Mark 2.0 stack to be active for testing purposes. (srimanth) AMBARI-2173. TEST BROKEN : FAIL: test_upgradeCommand_executeCommand Modified: incubator/ambari/trunk/ambari-web/app/data/config_properties.js URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-web/app/data/config_properties.js?rev=1485005&r1=1485004&r2=1485005&view=diff ============================================================================== --- incubator/ambari/trunk/ambari-web/app/data/config_properties.js (original) +++ incubator/ambari/trunk/ambari-web/app/data/config_properties.js Tue May 21 22:55:43 2013 @@ -253,10 +253,10 @@ module.exports = "id": "puppet var", "name": "datanode_du_reserved", "displayName": "Reserved space for HDFS", - "description": "Reserved space in GB per volume", - "defaultValue": "1", + "description": "Reserved space in bytes per volume. Always leave this much space free for non dfs use.", + "defaultValue": "0", "displayType": "int", - "unit": "GB", + "unit": "bytes", "isVisible": true, "domain": "global", "serviceName": "HDFS", @@ -281,9 +281,9 @@ module.exports = "name": "fs_checkpoint_size", "displayName": "HDFS Maximum Edit Log Size for Checkpointing", "description": "Maximum size of the edits log file that forces an urgent checkpoint even if the maximum checkpoint delay is not reached", - "defaultValue": "0.5", + "defaultValue": "67108864", "displayType": "float", - "unit": "GB", + "unit": "bytes", "isVisible": true, "domain": "global", "filename": "core-site.xml",