httpstatuses/contents/codes/408.md
WALL-E 62df9e637c Add Python status constants (#57)
* Add Python status constants

* Add Python 2, Python 3+, Python 3.5+ status constants
2016-05-22 00:07:16 +01:00

1.0 KiB

set code title references
4 408 Request Timeout
Rails HTTP Status Symbol Go HTTP Status Constant Symfony HTTP Status Constant Python2 HTTP Status Constant Python3+ HTTP Status Constant Python3.5+ HTTP Status Constant
:request_timeout http.StatusRequestTimeout Response::HTTP_REQUEST_TIMEOUT httplib.REQUEST_TIMEOUT http.client.REQUEST_TIMEOUT http.HTTPStatus.REQUEST_TIMEOUT

The server did not receive a complete request message within the time that it was prepared to wait.

A server SHOULD send the "close" connection option1 in the response, since 408 implies that the server has decided to close the connection rather than continue waiting. If the client has an outstanding request in transit, the client MAY repeat that request on a new connection.