You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by ma...@apache.org on 2013/02/26 04:06:53 UTC

svn commit: r1450004 - in /incubator/ambari/trunk: CHANGES.txt ambari-server/src/main/python/ambari-server.py

Author: mahadev
Date: Tue Feb 26 03:06:53 2013
New Revision: 1450004

URL: http://svn.apache.org/r1450004
Log:
AMBARI-1497. Fix start up option for ambari-server where there is a missing space. (mahadev)

Modified:
    incubator/ambari/trunk/CHANGES.txt
    incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py

Modified: incubator/ambari/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1450004&r1=1450003&r2=1450004&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Tue Feb 26 03:06:53 2013
@@ -640,6 +640,9 @@ Trunk (unreleased changes):
 
  AMBARI-1488. Nagios script causes unwanted Datanode logs. (mahadev)
 
+ AMBARI-1497. Fix start up option for ambari-server where there is a missing
+ space. (mahadev)
+
 AMBARI-1.2.0 branch:
 
  INCOMPATIBLE CHANGES

Modified: incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py
URL: http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py?rev=1450004&r1=1450003&r2=1450004&view=diff
==============================================================================
--- incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py (original)
+++ incubator/ambari/trunk/ambari-server/src/main/python/ambari-server.py Tue Feb 26 03:06:53 2013
@@ -76,7 +76,7 @@ if ambari_provider_module is not None:
 SERVER_START_CMD="{0}" + os.sep + "bin" + os.sep +\
                  "java -server -XX:NewRatio=3 "\
                  "-XX:+UseConcMarkSweepGC " +\
-                 "-XX:-UseGCOverheadLimit -XX:CMSInitiatingOccupancyFraction=60" +\
+                 "-XX:-UseGCOverheadLimit -XX:CMSInitiatingOccupancyFraction=60 " +\
                  ambari_provider_module_option +\
                  os.getenv('AMBARI_JVM_ARGS','-Xms512m -Xmx2048m') +\
                  " -cp {1}"+ os.pathsep + "{2}" +\
@@ -1240,4 +1240,4 @@ class Properties(object):
 
 
 if __name__ == "__main__":
-  main()
\ No newline at end of file
+  main()