From a03a7459c84277833e8f8ce31e429fb0ab8823ad Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Tue, 10 Sep 2024 10:13:25 +0200 Subject: [PATCH] auth communicator: fix retrieval thread name (cherry picked from commit fdc906cf85b84648241f0a6a1a54f266cb970c31) --- pdns/communicator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/communicator.cc b/pdns/communicator.cc index 1de71defdb..a18012ff30 100644 --- a/pdns/communicator.cc +++ b/pdns/communicator.cc @@ -42,7 +42,7 @@ // there can be MANY OF THESE void CommunicatorClass::retrievalLoopThread() { - setThreadName("pdns/comm-retre"); + setThreadName("pdns/comm-retri"); for (;;) { d_suck_sem.wait(); SuckRequest sr; -- 2.47.2