mirror of
https://github.com/ceph/ceph
synced 2024-12-17 17:05:42 +00:00
Merge pull request #13846 from rzarzynski/wip-qa-rgw-start-apache-first
qa/tasks/rgw.py: start Apache before RadosGW. Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
This commit is contained in:
commit
1bb5ea860f
@ -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([
|
||||
@ -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([
|
||||
@ -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([
|
||||
|
Loading…
Reference in New Issue
Block a user