Remove default delay.

If it works well, all dead code will be cleaned in future versions of slapos.core
parent c5409c67
...@@ -262,9 +262,10 @@ def parseArgumentTupleAndReturnSlapgridObject(*argument_tuple): ...@@ -262,9 +262,10 @@ def parseArgumentTupleAndReturnSlapgridObject(*argument_tuple):
# Sleep for a random time to avoid SlapOS Master being DDOSed by an army of # Sleep for a random time to avoid SlapOS Master being DDOSed by an army of
# SlapOS Nodes configured with cron. # SlapOS Nodes configured with cron.
if option_dict["now"]: if option_dict["now"]:
# XXX-Cedric: deprecate "--now"
maximal_delay = 0 maximal_delay = 0
else: else:
maximal_delay = int(option_dict.get("maximal_delay", "300")) maximal_delay = int(option_dict.get("maximal_delay", "0"))
if maximal_delay > 0: if maximal_delay > 0:
duration = int(maximal_delay * random()) duration = int(maximal_delay * random())
logging.info("Sleeping for %s seconds. To disable this feature, " \ logging.info("Sleeping for %s seconds. To disable this feature, " \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment