Bug 1138392 - Deploy script: don't pass 'ctx' to @hostgroups functions

...same as @task. Oops.
This commit is contained in:
Ed Morley 2015-03-02 17:57:18 +00:00
Родитель cc60b10517
Коммит b4a2fb6ea8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -104,6 +104,6 @@ def deploy_nodes(ctx, hostgroup, node_type):
# TODO: Move this to the restart-jobs script.
ctx.remote('{0}/service httpd graceful'.format(settings.SBIN_DIR))
rsync_code(ctx, node_type)
rsync_code(node_type)
env_flag = '-p' if is_prod else '-s'
ctx.local('/root/bin/restart-jobs %s %s' % (env_flag, node_type))