Skip to content

Commit

Permalink
netcup: increase default propagation values (#2379)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez authored Dec 10, 2024
1 parent 6525037 commit eac62e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers/dns/netcup/netcup.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ type Config struct {
func NewDefaultConfig() *Config {
return &Config{
TTL: env.GetOrDefaultInt(EnvTTL, dns01.DefaultTTL),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 120*time.Second),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 5*time.Second),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 15*time.Minute),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 30*time.Second),
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 10*time.Second),
},
Expand Down

0 comments on commit eac62e3

Please sign in to comment.