Skip to content

Commit

Permalink
don't attach DNS zone too early
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallagher committed Jul 9, 2024
1 parent 827a4a7 commit cfb0e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal-dns/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ impl DnsConfigBuilder {
DnsRecord::Aaaa(*zone_ip)
})
.collect::<Vec<DnsRecord>>();
(format!("{BOUNDARY_NTP_DNS_NAME}.{DNS_ZONE}"), records)
(BOUNDARY_NTP_DNS_NAME.to_string(), records)
});

// Assemble the set of AAAA records for zones.
Expand Down

0 comments on commit cfb0e55

Please sign in to comment.