mirror of https://github.com/encode/starlette.git
Add 425 Too Early status code (#660)
This commit is contained in:
parent
6fa0038c69
commit
7074f51977
|
@ -3,6 +3,7 @@ HTTP codes
|
|||
See RFC 2616 - https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
|
||||
And RFC 6585 - https://tools.ietf.org/html/rfc6585
|
||||
And RFC 4918 - https://tools.ietf.org/html/rfc4918
|
||||
And RFC 8470 - https://tools.ietf.org/html/rfc8470
|
||||
"""
|
||||
HTTP_100_CONTINUE = 100
|
||||
HTTP_101_SWITCHING_PROTOCOLS = 101
|
||||
|
@ -43,6 +44,7 @@ HTTP_417_EXPECTATION_FAILED = 417
|
|||
HTTP_422_UNPROCESSABLE_ENTITY = 422
|
||||
HTTP_423_LOCKED = 423
|
||||
HTTP_424_FAILED_DEPENDENCY = 424
|
||||
HTTP_425_TOO_EARLY = 425
|
||||
HTTP_428_PRECONDITION_REQUIRED = 428
|
||||
HTTP_429_TOO_MANY_REQUESTS = 429
|
||||
HTTP_431_REQUEST_HEADER_FIELDS_TOO_LARGE = 431
|
||||
|
|
Loading…
Reference in New Issue