]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix a typo is an exception message spotted by Miod
authorRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 22 Aug 2025 12:38:35 +0000 (14:38 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 5 Sep 2025 13:13:34 +0000 (15:13 +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 5672d28fb156b2bbbb897980cfd1432c7d84e85a..64e0827ec3b5ef37db10cdb03ce8767767a5e050 100644 (file)
@@ -344,7 +344,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));
     }
   }