You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2011/06/05 10:27:30 UTC

svn commit: r1132036 - /incubator/mesos/trunk/ec2/mesos_ec2.py

Author: benh
Date: Sun Jun  5 08:27:30 2011
New Revision: 1132036

URL: http://svn.apache.org/viewvc?rev=1132036&view=rev
Log:
More helpful metavar for --ft flag in ec2 script.

Modified:
    incubator/mesos/trunk/ec2/mesos_ec2.py

Modified: incubator/mesos/trunk/ec2/mesos_ec2.py
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/ec2/mesos_ec2.py?rev=1132036&r1=1132035&r2=1132036&view=diff
==============================================================================
--- incubator/mesos/trunk/ec2/mesos_ec2.py (original)
+++ incubator/mesos/trunk/ec2/mesos_ec2.py Sun Jun  5 08:27:30 2011
@@ -47,7 +47,7 @@ def parse_args():
   parser.add_option("--resume", action="store_true", default=False,
       help="Resume installation on a previously launched cluster " +
            "(for debugging)")
-  parser.add_option("-f", "--ft", default="1", 
+  parser.add_option("-f", "--ft", metavar="NUM_MASTERS", default="1", 
       help="Number of masters to run. Default is 1. " + 
            "Greater values cause Mesos to run in FT mode with ZooKeeper.")
   (opts, args) = parser.parse_args()