mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #9511 from sivel/rax-lb-fixes
Fix rax_find_loadbalancer issues
This commit is contained in:
commit
716f3eb6d9
1 changed files with 1 additions and 1 deletions
|
@ -173,9 +173,9 @@ def rax_find_server(module, rax_module, server):
|
|||
def rax_find_loadbalancer(module, rax_module, loadbalancer):
|
||||
clb = rax_module.cloud_loadbalancers
|
||||
try:
|
||||
UUID(loadbalancer)
|
||||
found = clb.get(loadbalancer)
|
||||
except:
|
||||
found = []
|
||||
for lb in clb.list():
|
||||
if loadbalancer == lb.name:
|
||||
found.append(lb)
|
||||
|
|
Loading…
Reference in a new issue