From 8f4e2dbe87c66830cab23d4845e080cbbe360517 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Fri, 1 Oct 2021 13:25:59 +0200 Subject: [PATCH] dnsdist: Fix several typos in the health check code --- pdns/dnsdistdist/dnsdist-healthchecks.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pdns/dnsdistdist/dnsdist-healthchecks.cc b/pdns/dnsdistdist/dnsdist-healthchecks.cc index ebca358532..1a7030f32d 100644 --- a/pdns/dnsdistdist/dnsdist-healthchecks.cc +++ b/pdns/dnsdistdist/dnsdist-healthchecks.cc @@ -480,12 +480,12 @@ void handleQueuedHealthChecks(FDMultiplexer& mplexer, bool initial) } catch (const std::exception& e) { if (g_verboseHealthChecks) { - infolog("Error while delaing with a timeout for the health check response from backend %s: %s", data->d_ds->getNameWithAddr(), e.what()); + infolog("Error while dealing with a timeout for the health check response from backend %s: %s", data->d_ds->getNameWithAddr(), e.what()); } } catch (...) { if (g_verboseHealthChecks) { - infolog("Error while delaing with a timeout for the health check response from backend %s", data->d_ds->getNameWithAddr()); + infolog("Error while dealing with a timeout for the health check response from backend %s", data->d_ds->getNameWithAddr()); } } } @@ -506,12 +506,12 @@ void handleQueuedHealthChecks(FDMultiplexer& mplexer, bool initial) } catch (const std::exception& e) { if (g_verboseHealthChecks) { - infolog("Error while delaing with a timeout for the health check response from backend %s: %s", data->d_ds->getNameWithAddr(), e.what()); + infolog("Error while dealing with a timeout for the health check response from backend %s: %s", data->d_ds->getNameWithAddr(), e.what()); } } catch (...) { if (g_verboseHealthChecks) { - infolog("Error while delaing with a timeout for the health check response from backend %s", data->d_ds->getNameWithAddr()); + infolog("Error while dealing with a timeout for the health check response from backend %s", data->d_ds->getNameWithAddr()); } } } -- 2.47.2