Merge "Fix duplicate VIP address error reporting"

This commit is contained in:
Zuul
2025-07-02 17:39:23 +00:00
committed by Gerrit Code Review
8 changed files with 57 additions and 0 deletions

View File

@@ -440,3 +440,8 @@ class ListenerNoChildren(APIException):
class MemberSRIOVDisabled(APIException):
msg = _('The load balancer flavor does not allow SR-IOV member ports.')
code = 400
class VIPAddressConflict(APIException):
msg = _('The VIP IP address is already in use: %(msg)s')
code = 409