From 6dad2d2fc6c959e17408876190347bf8684b4662 Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Tue, 31 May 2022 15:05:12 +0200 Subject: [PATCH] allow-notify doesn't work for url on rpz zones (https://github.com/NLnetLabs/unbound/issues/679) --- services/authzone.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/authzone.c b/services/authzone.c index 02fb621a2..a66ffa1dc 100644 --- a/services/authzone.c +++ b/services/authzone.c @@ -5512,6 +5512,8 @@ xfr_transfer_init_fetch(struct auth_xfer* xfr, struct module_env* env) addr_to_str(&addr, addrlen, as, sizeof(as)); verbose(VERB_ALGO, "auth zone %s transfer next HTTP fetch from %s started", zname, as); } + /* Create or refresh the list of of allow_notify addrs */ + probe_copy_masters_for_allow_notify(xfr); return 1; }