mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-10 07:04:24 +00:00
Set internal HTTP API timeout to 10 minutes (#1459)
This commit is contained in:
parent
378a0520be
commit
b471d4d77a
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ func NewBaseDendrite(cfg *config.Dendrite, componentName string, useHTTPAPIs boo
|
|||
logrus.WithError(err).Warnf("Failed to create cache")
|
||||
}
|
||||
|
||||
apiClient := http.Client{}
|
||||
apiClient := http.Client{Timeout: time.Minute * 10}
|
||||
client := http.Client{Timeout: HTTPClientTimeout}
|
||||
if cfg.FederationSender.Proxy.Enabled {
|
||||
client.Transport = &http.Transport{Proxy: http.ProxyURL(&url.URL{
|
||||
|
|
Loading…
Reference in a new issue