httpstatuses/contents/codes/408.md

19 lines
718 B
Markdown
Raw Normal View History

2015-11-06 21:39:33 +01:00
---
set: 4
code: 408
title: Request Timeout
references:
"Rails HTTP Status Symbol": ":request_timeout"
2015-11-06 21:39:33 +01:00
---
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>