Merge "Have the service catalog ignore empty urls"
This commit is contained in:
@@ -54,7 +54,7 @@ class ServiceCatalog(object):
|
|||||||
if not filtration.match_visibility(endpoint.get('interface')):
|
if not filtration.match_visibility(endpoint.get('interface')):
|
||||||
continue
|
continue
|
||||||
url = endpoint.get('url')
|
url = endpoint.get('url')
|
||||||
if url is not None:
|
if url:
|
||||||
eps += [url]
|
eps += [url]
|
||||||
return eps
|
return eps
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user