]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix a typo is an exception message spotted by Miod 16080/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 22 Aug 2025 12:38:35 +0000 (14:38 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Thu, 4 Sep 2025 15:12:29 +0000 (17:12 +0200)
Co-authored-by: Miod Vallat <miod.vallat@powerdns.com>
Signed-off-by: Remi Gacogne <github@coredump.fr>
(cherry picked from commit 28238ca3fb9fab245b90d912a30355567aa7266d)

pdns/dnsdistdist/dnsdist-nghttp2.cc

index f2cf88fab0116a0fed29237e829084e010edb2be..624d0f1216914685a150f3c774eb41d93de3ec9d 100644 (file)
@@ -349,7 +349,7 @@ void DoHConnectionToBackend::queueQuery(std::shared_ptr<TCPQuerySender>& 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));
     }
   }