mirror of
https://github.com/rmaake1/httpstatuses.git
synced 2024-11-02 00:32:36 +01:00
19 lines
718 B
Markdown
19 lines
718 B
Markdown
---
|
|
set: 4
|
|
code: 408
|
|
title: Request Timeout
|
|
references:
|
|
"Rails HTTP Status Symbol": ":request_timeout"
|
|
---
|
|
|
|
The 408 (Request Timeout) status code indicates that 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 option ([Section 6.1 of RFC7230][2])
|
|
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.
|
|
|
|
Source: [RFC7231 Section 6.5.7][1]
|
|
|
|
[1]: <http://tools.ietf.org/html/rfc7231#section-6.5.7>
|
|
[2]: <http://tools.ietf.org/html/rfc7230#section-6.1> |