Skip to content

Commit

Permalink
fix: increase timeout propagation
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Nov 21, 2024
1 parent 34a80e9 commit 8cc7683
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers/dns/westcn/westcn.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ type Config struct {
func NewDefaultConfig() *Config {
return &Config{
TTL: env.GetOrDefaultInt(EnvTTL, 60),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, dns01.DefaultPropagationTimeout),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, dns01.DefaultPollingInterval),
PropagationTimeout: env.GetOrDefaultSecond(EnvPropagationTimeout, 2*time.Minute),
PollingInterval: env.GetOrDefaultSecond(EnvPollingInterval, 10*time.Second),
HTTPClient: &http.Client{
Timeout: env.GetOrDefaultSecond(EnvHTTPTimeout, 30*time.Second),
},
Expand Down

0 comments on commit 8cc7683

Please sign in to comment.