os_loadbalancer: Fix the absent function (#61083)
This commit is contained in:
parent
eeb2fd35d1
commit
a53ec6af87
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ def _wait_for_lb(module, cloud, lb, status, failures, interval=5):
|
||||||
failures = []
|
failures = []
|
||||||
|
|
||||||
while total_sleep < timeout:
|
while total_sleep < timeout:
|
||||||
lb = cloud.load_balancer.get_load_balancer(lb.id)
|
lb = cloud.load_balancer.find_load_balancer(lb.id)
|
||||||
|
|
||||||
if lb:
|
if lb:
|
||||||
if lb.provisioning_status == status:
|
if lb.provisioning_status == status:
|
||||||
|
|
Loading…
Reference in a new issue