From: Remi Gacogne Date: Fri, 1 Oct 2021 11:25:59 +0000 (+0200) Subject: dnsdist: Fix several typos in the health check code X-Git-Tag: auth-4.6.0-alpha1~9^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F10789%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Fix several typos in the health check code --- 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()); } } }