mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-14 16:07:42 +00:00
try reddit without verifyign certificates
This commit is contained in:
parent
0b81d4c9d3
commit
b1aac725aa
1 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@ package reddit
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"crypto/tls"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -99,6 +100,7 @@ func NewClient(id, secret string, statsd statsd.ClientInterface, redis *redis.Cl
|
||||||
t.MaxIdleConns = connLimit / 2
|
t.MaxIdleConns = connLimit / 2
|
||||||
t.MaxConnsPerHost = connLimit
|
t.MaxConnsPerHost = connLimit
|
||||||
t.MaxIdleConnsPerHost = 100
|
t.MaxIdleConnsPerHost = 100
|
||||||
|
t.TLSClientConfig = &tls.Config{InsecureSkipVerify: true} // TODO(andremedeiros): remove
|
||||||
client := &http.Client{
|
client := &http.Client{
|
||||||
Timeout: 5 * time.Second,
|
Timeout: 5 * time.Second,
|
||||||
Transport: t,
|
Transport: t,
|
||||||
|
|
Loading…
Reference in a new issue