# HG changeset patch # User Kim Alvefur # Date 1643723202 -3600 # Node ID e4530bdbf5f395ca5ca1c8523f667d32e6251bae # Parent 4f5f34a7f85a96ac83a87a028e1e02f4bdd24b84 util.prosodyctl.check: Fix reset of libunbound before DNS checks Probably worked anyway but settings might not always have been applied depending on what order things happens in. Error was hidden by the pcall, which was sorta intentional... diff -r 4f5f34a7f85a -r e4530bdbf5f3 util/prosodyctl/check.lua --- a/util/prosodyctl/check.lua Mon Jan 31 17:07:12 2022 +0100 +++ b/util/prosodyctl/check.lua Tue Feb 01 14:46:42 2022 +0100 @@ -412,7 +412,7 @@ local unbound_config = configmanager.get("*", "unbound") or {}; unbound_config.hoststxt = false; -- don't look at /etc/hosts configmanager.set("*", "unbound", unbound_config); - unbound.purge(); -- ensure the above config is used + unbound.dns.purge(); -- ensure the above config is used dns = unbound.dns; end) local idna = require "util.encodings".idna;