Update misleading comments in multisigner test

We are not actually retrieving these records from the other provider,
they are available as key files to us and we are using those files
to send a dynamic update to the server.

(cherry picked from commit 11578aa219)
This commit is contained in:
Matthijs Mekking 2025-11-26 08:31:45 +01:00
parent a8a080f6f6
commit 96cff3c001

View file

@ -284,7 +284,7 @@ def check_add_cdnskey(server, zone, keys, expected, extra_keys, extra, primary=N
f"- zone {zone} {primary.identifier}: update zone with CDNSKEY from other providers"
)
# Retrieve CDNSKEY records from the other providers.
# Update the server with the CDNSKEY record from the other providers.
update_msg = dns.update.UpdateMessage(zone)
for ksk in extra_keys:
dnskey = ksk.dnskey().split()
@ -400,7 +400,7 @@ def check_add_cds(server, zone, keys, expected, extra_keys, extra, primary=None)
f"- zone {zone} {primary.identifier}: update zone with CDS from other providers"
)
# Retrieve CDS records from the other providers.
# Update the server with the CDS record from the other providers.
update_msg = dns.update.UpdateMessage(zone)
for ksk in extra_keys:
ds = dsfromkey(ksk)