Skip to content
Snippets Groups Projects

Container could fail to delete when there were reference properties

Merged Daniel Hornung requested to merge f-container-delete-reference-dependency into dev
2 unresolved threads
2 files
+ 3
1
Compare changes
  • Side-by-side
  • Inline

Files

@@ -509,7 +509,8 @@ def _handle_response_status(http_response):
raise LoginFailedError(standard_message)
elif status == 403:
raise HTTPForbiddenError(standard_message)
elif status in (413, 414):
elif status in (413, 414, 431):
# Content (413), URI (414) or complete HTTP headers (URI+headers) (431) too long
raise HTTPURITooLongError(standard_message)
elif 399 < status < 500:
raise HTTPClientError(msg=standard_message, status=status, body=body)
Loading