Merge "NSX-V: Re-raise exception if failed to assign security-group to port"
This commit is contained in:
commit
2fcac8789f
@ -664,8 +664,9 @@ class NsxVPluginV2(addr_pair_db.AllowedAddressPairsMixin,
|
||||
"group %(vnic_id)s"),
|
||||
{'sg_id': sg_id, 'vnic_id': vnic_id})
|
||||
except Exception:
|
||||
LOG.debug("NSX security group %(sg_id)s member add "
|
||||
"failed %(vnic_id)s.",
|
||||
with excutils.save_and_reraise_exception():
|
||||
LOG.error(_LE("NSX security group %(sg_id)s member add "
|
||||
"failed %(vnic_id)s."),
|
||||
{'sg_id': sg_id,
|
||||
'vnic_id': vnic_id})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user