NSX-v3: Fix listener for pool not fetched anymore

Due to neutron-lbaas commit c672b0d5 the listner property, used
for backward compatibility, is not populated anymore in the pool
object passed to the driver.

This patch ensures that upon pool creation a listener, if set,
is always correctly retrieved.

Change-Id: Ia09e56ad11cba9cd22b22c117923e683042b00b5
This commit is contained in:
Salvatore Orlando 2018-11-17 15:43:25 -08:00
parent 4860b8cfaa
commit ba5f509497

View File

@ -78,8 +78,14 @@ class EdgePoolManagerFromDict(base_mgr.Nsxv3LoadbalancerBaseManager):
# --loadbalancer option. If listener is present, the virtual server
# will be updated with the pool. Otherwise, just return. The binding
# will be added later when the pool is associated with layer7 rule.
if pool['listener']:
listener_id = pool['listener']['id']
# NOTE(salv-orlando): Guard against accidental compat breakages
try:
listener = pool['listener'] or pool['listeners'][0]
except IndexError:
# If listeners is an empty list we hit this exception
listener = None
if listener:
listener_id = listener['id']
binding = nsx_db.get_nsx_lbaas_listener_binding(
context.session, lb_id, listener_id)
if binding: