Skip to content

Commit

Permalink
Merge pull request #13846 from rzarzynski/wip-qa-rgw-start-apache-first
Browse files Browse the repository at this point in the history
qa/tasks/rgw.py: start Apache before RadosGW.

Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
  • Loading branch information
yehudasa committed Mar 7, 2017
2 parents e9228f3 + 6440750 commit 1bb5ea8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions qa/tasks/rgw.py
Expand Up @@ -1305,8 +1305,8 @@ def task(ctx, config):
subtasks.extend([
lambda: ship_apache_configs(ctx=ctx, config=config,
role_endpoints=role_endpoints, on_client=master_client),
lambda: start_rgw(ctx=ctx, config=config, on_client=master_client),
lambda: start_apache(ctx=ctx, config=config, on_client=master_client),
lambda: start_rgw(ctx=ctx, config=config, on_client=master_client),
])
elif ctx.rgw.frontend == 'civetweb':
subtasks.extend([
Expand Down Expand Up @@ -1345,15 +1345,15 @@ def task(ctx, config):
on_client=None,
except_client = master_client,
),
lambda: start_rgw(ctx=ctx,
config=config,
on_client=None,
except_client = master_client),
lambda: start_apache(ctx=ctx,
config = config,
on_client=None,
except_client = master_client,
),
lambda: start_rgw(ctx=ctx,
config=config,
on_client=None,
except_client = master_client),
])
elif ctx.rgw.frontend == 'civetweb':
subtasks.extend([
Expand Down Expand Up @@ -1386,9 +1386,9 @@ def task(ctx, config):
subtasks.extend([
lambda: ship_apache_configs(ctx=ctx, config=config,
role_endpoints=role_endpoints),
lambda: start_apache(ctx=ctx, config=config),
lambda: start_rgw(ctx=ctx,
config=config),
lambda: start_apache(ctx=ctx, config=config),
])
elif ctx.rgw.frontend == 'civetweb':
subtasks.extend([
Expand Down

0 comments on commit 1bb5ea8

Please sign in to comment.