increase the command timeout for taskotron dev to fix jobs being killed for running too long

This commit is contained in:
Tim Flink 2015-04-09 17:57:32 +00:00
parent f007e08dc2
commit 1dc69af2ad

View file

@ -175,6 +175,9 @@ factory.addStep(ShellCommand(command=["runtask",
Interpolate('%(prop:taskname)s.yml')],
descriptionDone=[Interpolate('%(prop:taskname)s on %(prop:item)s')],
name='runtask',
{% if deployment_type in ['dev'] %}
timeout=2400,
{% endif %}
logfiles={'taskotron.log': {'filename': '/var/log/taskotron/taskotron.log', }}))