mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-09 22:55:17 +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 {
|
if rec.Metadata == nil {
|
||||||
rec.Metadata = map[string]string{}
|
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
|
rec.TTL = 1
|
||||||
}
|
}
|
||||||
if rec.TTL != 1 && rec.TTL < 120 {
|
if rec.TTL != 1 && rec.TTL < 120 {
|
||||||
|
|
Loading…
Add table
Reference in a new issue