Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/agent/Core/Controller/CheckoutSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,9 +353,13 @@ Controller::writeRequestQueueFullExceptionErrorResponse(Client *client, Request
" due to: " << e->what());

endRequestWithSimpleResponse(&client, &req,
"<html><head>"
Comment thread
CamJN marked this conversation as resolved.
"<meta name='viewport' content='width=device-width, initial-scale=1'>"
"</head><body>"
"<h2>This website is under heavy load (queue full)</h2>"
"<p>We're sorry, too many people are accessing this website at the same "
"time. We're working on this problem. Please try again later.</p>",
"time. We're working on this problem. Please try again later.</p>"
"</body></html>",
requestQueueOverflowStatusCode);
}

Expand Down