NSX|P: Fix member creation error message

Change-Id: Ie30f9c1da22ca02d4470167372a76551cde01824
This commit is contained in:
asarfaty 2021-03-29 10:17:28 +02:00 committed by Adit Sarfaty
parent 8ddf9b156d
commit 2e77e36dfa
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ class EdgeMemberManagerFromDict(base_mgr.NsxpLoadbalancerBaseManager):
filters=filters)
if floating_ips:
return floating_ips[0]
msg = (_('Member IP %(fip)s is an external IP, and is expected to '
'be a floating IP') % {'fip': fip})
msg = (_('Member IP %(fip)s is expected to be an external IP with a '
'floating IP') % {'fip': fip})
raise n_exc.BadRequest(resource='lbaas-vip', msg=msg)
def _get_info_from_fip(self, context, fip):