forked from TrueCloudLab/lego
Updated timeout for cloudflare dns challenge
Updated timeout for cloudflare dns challenge record propagation to fix issue as described in https://github.com/xenolf/lego/issues/167
This commit is contained in:
parent
735d41fbc8
commit
2eb4adca59
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ func (c *DNSProvider) makeRequest(method, uri string, body io.Reader) (json.RawM
|
||||||
req.Header.Set("X-Auth-Key", c.authKey)
|
req.Header.Set("X-Auth-Key", c.authKey)
|
||||||
//req.Header.Set("User-Agent", userAgent())
|
//req.Header.Set("User-Agent", userAgent())
|
||||||
|
|
||||||
client := http.Client{Timeout: 30 * time.Second}
|
client := http.Client{Timeout: 120 * time.Second}
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("Error querying API -> %v", err)
|
return nil, fmt.Errorf("Error querying API -> %v", err)
|
||||||
|
|
Loading…
Reference in a new issue