mirror of
https://github.com/rmaake1/httpstatuses.git
synced 2024-11-02 00:32:36 +01:00
23 lines
740 B
Markdown
23 lines
740 B
Markdown
---
|
|
set: 4
|
|
code: 408
|
|
title: Request Timeout
|
|
references:
|
|
"Rails HTTP Status Symbol": ":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 option<sup>[1](#ref-1)</sup>
|
|
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.
|
|
|
|
---
|
|
|
|
* <span id="ref-1"><sup>1</sup> Connection [RFC7230 Section 6.1][2]</span>
|
|
* 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> |