src/lib/http/client.cc
src/lib/http/http_messages.mes
Destination(Url url, TlsContextPtr tls_context, size_t max_connections)
: url_(url), tls_context_(tls_context),
max_connections_(max_connections), connections_(), queue_(),
- last_queue_warn_time_(min_date_time), last_queue_size_(0) {
+ last_queue_warn_time_(min_date_time), last_queue_size_(0) {
}
/// @brief Destructor
This warning message is issued when the queue of pending requests for the
given URL appears to be growing more quickly than the requests can be handled.
It will be emitted periodically as long as the queue size continues to grow.
-This may occur with a surge of client traffic creating a momemntary backlog
+This may occur with a surge of client traffic creating a momentary backlog
which then subsides as the surge subsides. If it happens continually then
it most likely indicates a deployment configuration that cannot sustain the
client load.