Bug 1138392 - Deploy script: @task functions shouldn't be passed 'ctx'

...since the decorator does that for us.
This commit is contained in:
Ed Morley 2015-03-02 17:54:02 +00:00
Родитель c0e59f9bea
Коммит cc60b10517
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -69,10 +69,10 @@ def deploy(ctx):
# Rsync the updated code to the nodes & restart processes. These are
# separated out into their own functions, since the IRC bot output includes
# the task function name which is useful given how long these steps take.
deploy_rabbit(ctx)
deploy_web_app(ctx)
deploy_etl(ctx)
deploy_log(ctx)
deploy_rabbit()
deploy_web_app()
deploy_etl()
deploy_log()
@task