mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
util: Handle HTTP_SERVICE_UNAVAILABLE in bitcoin-cli
This commit is contained in:
parent
4db44acf2d
commit
b5a80fa7e4
2 changed files with 3 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ static void http_request_cb(struct evhttp_request* req, void* arg)
|
|||
item.release(); /* if true, queue took ownership */
|
||||
else {
|
||||
LogPrintf("WARNING: request rejected because http work queue depth exceeded, it can be increased with the -rpcworkqueue= setting\n");
|
||||
item->req->WriteReply(HTTP_INTERNAL_SERVER_ERROR, "Work queue depth exceeded");
|
||||
item->req->WriteReply(HTTP_SERVICE_UNAVAILABLE, "Work queue depth exceeded");
|
||||
}
|
||||
} else {
|
||||
hreq->WriteReply(HTTP_NOT_FOUND);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue