aboutsummaryrefslogtreecommitdiff
path: root/src/httpserver.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-04-04 18:02:27 +0300
committerLarry Ruane <larryruane@gmail.com>2020-07-12 13:31:16 -0600
commitb5a80fa7e487c37b7ac0e3874a2fabade41b9ca8 (patch)
tree8f971e7b80f55604486b99bd203a648adeb2ea27 /src/httpserver.cpp
parent4db44acf2d5d3b40943c94b3960f42838255b7ad (diff)
downloadbitcoin-b5a80fa7e487c37b7ac0e3874a2fabade41b9ca8.tar.xz
util: Handle HTTP_SERVICE_UNAVAILABLE in bitcoin-cli
Diffstat (limited to 'src/httpserver.cpp')
-rw-r--r--src/httpserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp
index 1e5ea2de83..2a5ce18893 100644
--- a/src/httpserver.cpp
+++ b/src/httpserver.cpp
@@ -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);