mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 09:59:59 +08:00
restore prior cloudflare auto-ttl behavior when ttl is 300
This commit is contained in:
parent
539820f87a
commit
f61efd45f2
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ func (c *CloudflareApi) preprocessConfig(dc *models.DomainConfig) error {
|
|||
if rec.Metadata == nil {
|
||||
rec.Metadata = map[string]string{}
|
||||
}
|
||||
if rec.TTL == 0 { // Please read: https://github.com/StackExchange/dnscontrol/issues/490
|
||||
if rec.TTL == 0 || rec.TTL == 300{
|
||||
rec.TTL = 1
|
||||
}
|
||||
if rec.TTL != 1 && rec.TTL < 120 {
|
||||
|
|
Loading…
Reference in a new issue