Skip to content

Commit f388f1c

Browse files
authored
fix(dns): increase dns default timeout (#2056)
1 parent c539c20 commit f388f1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scaleway/helpers_domain.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212
)
1313

1414
const (
15-
defaultDomainRecordTimeout = 30 * time.Second
16-
defaultDomainZoneTimeout = 30 * time.Second
17-
defaultDomainZoneRetryInterval = 5 * time.Second
15+
defaultDomainRecordTimeout = 5 * time.Minute
16+
defaultDomainZoneTimeout = 5 * time.Minute
17+
defaultDomainZoneRetryInterval = 5 * time.Minute
1818
)
1919

2020
// domainAPI returns a new domain API.

0 commit comments

Comments
 (0)