From 2131fb55de746ef6db1536bc263c6e1272794026 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 2 May 2022 12:20:49 +0200 Subject: [PATCH] Upgrade guide entries and small nit --- pdns/recursordist/docs/upgrade.rst | 13 ++++++++++++- pdns/syncres.cc | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/docs/upgrade.rst b/pdns/recursordist/docs/upgrade.rst index f43d3f9465..1aa07bc607 100644 --- a/pdns/recursordist/docs/upgrade.rst +++ b/pdns/recursordist/docs/upgrade.rst @@ -4,7 +4,14 @@ Upgrade Guide Before upgrading, it is advised to read the :doc:`changelog/index`. When upgrading several versions, please read **all** notes applying to the upgrade. -4.6.2 to master +4.7.0 to master +--------------- + +:program:`rec_control` changes +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +The ``dump-throttle`` subcommand no longer produces a table per thread, as the corresponding table now is shared by all threads. + +4.6.2 to 4.7.0 --------------- Zone to Cache Changes @@ -33,6 +40,10 @@ New settings - The :ref:`setting-max-busy-dot-probes` settings has been introduced, enabling the :program:`Recursor` probe for ``DoT`` support of authoritative servers. This is an experimental function, use with care. +:program:`rec_control` changes +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +The ``dump-nsspeeds``, ``dump-failedservers`` and ``dump-non-resolving`` subcommands no longer produce a table per thread, as the corresponding tables are now shared by all threads. + 4.6.1 to 4.6.2 -------------- diff --git a/pdns/syncres.cc b/pdns/syncres.cc index e66c7aa60f..f0d0140b93 100644 --- a/pdns/syncres.cc +++ b/pdns/syncres.cc @@ -5060,7 +5060,7 @@ bool SyncRes::doResolveAtThisIP(const std::string& prefix, const DNSName& qname, if (s_serverdownmaxfails > 0 && (auth != g_rootdnsname) && s_fails.lock()->incr(remoteIP, d_now) >= s_serverdownmaxfails) { LOG(prefix<