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:41:32 UTC

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

Author: benh
Date: Sun Jun  5 08:41:32 2011
New Revision: 1132102

URL: http://svn.apache.org/viewvc?rev=1132102&view=rev
Log:
Increase sleep time when waiting for instances to start

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=1132102&r1=1132101&r2=1132102&view=diff
==============================================================================
--- incubator/mesos/trunk/ec2/mesos_ec2.py (original)
+++ incubator/mesos/trunk/ec2/mesos_ec2.py Sun Jun  5 08:41:32 2011
@@ -275,8 +275,8 @@ def wait_for_cluster(conn, master_res, s
   wait_for_instances(conn, slave_res)
   if zoo_res != None:
     wait_for_instances(conn, zoo_res)
-  print "Waiting 30 more seconds..."
-  time.sleep(30)
+  print "Waiting 40 more seconds..."
+  time.sleep(40)
 
 
 # Get number of local disks available for a given EC2 instance type.