From 6bdfb155171040bdec62e50b09fccb2bb26d3173 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 12 Jan 2021 17:35:01 +0100 Subject: [PATCH] dnsdist: Reword the too many 'TCP client thread' message Co-authored-by: Otto Moerbeek --- pdns/dnsdist-tcp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]); -- 2.47.2