mirror of
https://github.com/rmaake1/httpstatuses.git
synced 2024-11-02 00:32:36 +01:00
29 lines
1.0 KiB
Markdown
29 lines
1.0 KiB
Markdown
---
|
|
set: 1
|
|
code: 102
|
|
title: Processing
|
|
references:
|
|
"Rails HTTP Status Symbol": ":processing"
|
|
---
|
|
|
|
An interim response used to inform the client that the server has accepted the
|
|
complete request, but has not yet completed it.
|
|
|
|
This status code SHOULD only be sent when the server has a reasonable
|
|
expectation that the request will take significant time to complete. As
|
|
guidance, if a method is taking longer than 20 seconds (a reasonable, but
|
|
arbitrary value) to process the server SHOULD return a 102 (Processing)
|
|
response. The server MUST send a final response after the request has been
|
|
completed.
|
|
|
|
Methods can potentially take a long period of time to process, especially
|
|
methods that support the Depth header. In such cases the client may time-out the
|
|
connection while waiting for a response. To prevent this the server may return a
|
|
102 Processing status code to indicate to the client that the server is still
|
|
processing the method.
|
|
|
|
---
|
|
|
|
* Source: [RFC2518 Section 10.1][1]
|
|
|
|
[1]: <http://tools.ietf.org/html/rfc2518#section-10.1> |