Increase default timeout to 30s which should allow for any operation
to complete.
This commit is contained in:
parent
ea17b85d94
commit
87c84db51b
|
@ -15,7 +15,7 @@ var (
|
|||
errRedirect = errors.New("redirect")
|
||||
defaultHTTPClientSetup sync.Once
|
||||
defaultHTTPClient = &http.Client{
|
||||
Timeout: time.Second * 5,
|
||||
Timeout: time.Second * 30,
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue