Merge "Remove unused parameter poll_period from wait_for_stack_ready"

This commit is contained in:
Zuul 2020-01-14 15:34:00 +00:00 committed by Gerrit Code Review
commit 63100e0114
1 changed files with 2 additions and 5 deletions

View File

@ -711,8 +711,8 @@ def create_tempest_deployer_input(config_name='tempest-deployer-input.conf'):
def wait_for_stack_ready(orchestration_client, stack_name, marker=None, def wait_for_stack_ready(orchestration_client, stack_name, marker=None,
action='CREATE', verbose=False, poll_period=5, action='CREATE', verbose=False, nested_depth=2,
nested_depth=2, max_retries=10): max_retries=10):
"""Check the status of an orchestration stack """Check the status of an orchestration stack
Get the status of an orchestration stack and check whether it is complete Get the status of an orchestration stack and check whether it is complete
@ -736,9 +736,6 @@ def wait_for_stack_ready(orchestration_client, stack_name, marker=None,
:param nested_depth: Max depth to look for events :param nested_depth: Max depth to look for events
:type nested_depth: int :type nested_depth: int
:param poll_period: How often to poll for events
:type poll_period: int
:param max_retries: Number of retries in the case of server problems :param max_retries: Number of retries in the case of server problems
:type max_retries: int :type max_retries: int
""" """