increase share create time out

Change-Id: Ia96b79e2fa313952d95ce6abd969456e522066d2
This commit is contained in:
Volodymyr Rozhanskyy 2016-10-05 12:30:03 +03:00
parent ba5fd5da8b
commit 6fd7e1bb0b
1 changed files with 3 additions and 2 deletions

View File

@ -151,8 +151,9 @@ class ManilaActions(common.Common):
"""Waits for a share to reach a given status."""
wait(lambda: self.get_share(share_name).status == status,
timeout=60 * 5, interval=5,
timeout_msg="Share didn't get status avaliable")
interval=5, timeout=60 * 10,
timeout_msg="Share didn't get status:{0}.Status is {1}".format(
status, self.get_share(share_name).status))
def add_acc_rule(self, share_id, acc_type='ip', rule=None, acc_level='rw'):
"""Add access rule for specific share"""