Merge pull request #9511 from sivel/rax-lb-fixes

Fix rax_find_loadbalancer issues
pull/9379/merge
James Cammarata 10 years ago
commit 716f3eb6d9

@ -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…
Cancel
Save