From 28238ca3fb9fab245b90d912a30355567aa7266d Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 22 Aug 2025 14:38:35 +0200 Subject: [PATCH] dnsdist: Fix a typo is an exception message spotted by Miod Co-authored-by: Miod Vallat Signed-off-by: Remi Gacogne --- pdns/dnsdistdist/dnsdist-nghttp2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsdistdist/dnsdist-nghttp2.cc b/pdns/dnsdistdist/dnsdist-nghttp2.cc index 54ba83f0c..1fff0ae2a 100644 --- a/pdns/dnsdistdist/dnsdist-nghttp2.cc +++ b/pdns/dnsdistdist/dnsdist-nghttp2.cc @@ -349,7 +349,7 @@ void DoHConnectionToBackend::queueQuery(std::shared_ptr& sender, d_connectionDied = true; ++d_ds->tcpDiedSendingQuery; d_currentStreams.erase(streamId); - throw std::runtime_error("Error in nghttp2_session_send:" + std::to_string(rtv)); + throw std::runtime_error("Error in nghttp2_session_send: " + std::to_string(rtv)); } } -- 2.47.3