Merge "Add NsxInvalidPath exception for error code 500012" into stable/victoria

This commit is contained in:
Zuul 2021-11-26 09:25:35 +00:00 committed by Gerrit Code Review
commit 22dd0f3c33
2 changed files with 6 additions and 1 deletions

View File

@ -92,7 +92,8 @@ def http_error_to_exception(status_code, error_code, related_error_codes=None):
'500105': exceptions.NsxOverlapAddresses,
'500232': exceptions.StaleRevision, # Missing dependent objects
'503040': exceptions.NsxSegemntWithVM,
'100148': exceptions.StaleRevision},
'100148': exceptions.StaleRevision,
'500012': exceptions.NsxInvalidPath},
requests.codes.CONFLICT: exceptions.StaleRevision,
requests.codes.PRECONDITION_FAILED: exceptions.StaleRevision,
requests.codes.INTERNAL_SERVER_ERROR:

View File

@ -213,6 +213,10 @@ class NsxPendingDelete(NsxLibException):
"remove the deleted object")
class NsxInvalidPath(ManagerError):
message = _("Invalid path found: %(details)s")
class NsxSegemntWithVM(ManagerError):
message = _("Cannot delete segment as it still has VMs or VIFs attached")