From: Remi Gacogne Date: Tue, 12 Jan 2021 16:35:01 +0000 (+0100) Subject: dnsdist: Reword the too many 'TCP client thread' message X-Git-Tag: dnsdist-1.6.0-alpha1~24^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bdfb155171040bdec62e50b09fccb2bb26d3173;p=thirdparty%2Fpdns.git dnsdist: Reword the too many 'TCP client thread' message Co-authored-by: Otto Moerbeek --- diff --git a/pdns/dnsdist-tcp.cc b/pdns/dnsdist-tcp.cc index 211f247f5a..fbbd3281b7 100644 --- a/pdns/dnsdist-tcp.cc +++ b/pdns/dnsdist-tcp.cc @@ -222,7 +222,7 @@ void TCPClientCollection::addTCPClientThread() std::lock_guard lock(d_mutex); if (d_numthreads >= d_tcpclientthreads.size()) { - vinfolog("Adding a new TCP client thread would exceed the vector capacity (%d/%d), skipping", d_numthreads.load(), d_tcpclientthreads.size()); + vinfolog("Adding a new TCP client thread would exceed the vector size (%d/%d), skipping", d_numthreads.load(), d_tcpclientthreads.size()); if (!d_useSinglePipe) { close(pipefds[0]); close(pipefds[1]);