mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:18:52 +00:00
remove optional passed-in http.client
This commit is contained in:
parent
e1b6dd4434
commit
43fe04e54f
1 changed files with 0 additions and 8 deletions
|
@ -97,9 +97,6 @@ type Config struct {
|
||||||
|
|
||||||
// DisableCompression: see http.Transport{}.DisableCompression.
|
// DisableCompression: see http.Transport{}.DisableCompression.
|
||||||
DisableCompression bool
|
DisableCompression bool
|
||||||
|
|
||||||
// HTTPClient ...
|
|
||||||
HTTPClient *http.Client
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Client wraps an underlying http.Client{} to provide the following:
|
// Client wraps an underlying http.Client{} to provide the following:
|
||||||
|
@ -123,11 +120,6 @@ func New(cfg Config) *Client {
|
||||||
var c Client
|
var c Client
|
||||||
c.retries = 5
|
c.retries = 5
|
||||||
|
|
||||||
if cfg.HTTPClient != nil {
|
|
||||||
// Copy over existing client.
|
|
||||||
c.client = *cfg.HTTPClient
|
|
||||||
}
|
|
||||||
|
|
||||||
d := &net.Dialer{
|
d := &net.Dialer{
|
||||||
Timeout: 15 * time.Second,
|
Timeout: 15 * time.Second,
|
||||||
KeepAlive: 30 * time.Second,
|
KeepAlive: 30 * time.Second,
|
||||||
|
|
Loading…
Reference in a new issue