Skip to content

Commit

Permalink
fix(dns): increase dns default timeout (#2056)
Browse files Browse the repository at this point in the history
  • Loading branch information
Monitob authored Jul 19, 2023
1 parent c539c20 commit f388f1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scaleway/helpers_domain.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
)

const (
defaultDomainRecordTimeout = 30 * time.Second
defaultDomainZoneTimeout = 30 * time.Second
defaultDomainZoneRetryInterval = 5 * time.Second
defaultDomainRecordTimeout = 5 * time.Minute
defaultDomainZoneTimeout = 5 * time.Minute
defaultDomainZoneRetryInterval = 5 * time.Minute
)

// domainAPI returns a new domain API.
Expand Down

0 comments on commit f388f1c

Please sign in to comment.