This commit is contained in:
Jakob Ackermann 2025-09-04 09:16:03 -03:00 committed by GitHub
commit 34b302b61f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -262,6 +262,11 @@ func (c *desecProvider) createDomain(domain string) error {
}
printer.Printf("To enable DNSSEC validation for your domain, make sure to convey the DS record(s) to your registrar:\n")
printer.Printf("%+q", dm.Keys)
c.domainIndexLock.Lock()
defer c.domainIndexLock.Unlock()
if c.domainIndex != nil {
c.domainIndex[domain] = dm.MinimumTTL
}
return nil
}