mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
binanceapi: adjust http timeout to 10s
This commit is contained in:
parent
d3dea2870b
commit
df6a34f5af
|
@ -21,7 +21,7 @@ import (
|
|||
"github.com/c9s/bbgo/pkg/types"
|
||||
)
|
||||
|
||||
const defaultHTTPTimeout = time.Second * 2
|
||||
const defaultHTTPTimeout = time.Second * 10
|
||||
const RestBaseURL = "https://api.binance.com"
|
||||
const SandboxRestBaseURL = "https://testnet.binance.vision"
|
||||
const DebugRequestResponse = false
|
||||
|
@ -37,7 +37,7 @@ var defaultTransport = &http.Transport{
|
|||
MaxIdleConns: 100,
|
||||
MaxConnsPerHost: 100,
|
||||
MaxIdleConnsPerHost: 100,
|
||||
//TLSNextProto: make(map[string]func(string, *tls.Conn) http.RoundTripper),
|
||||
// TLSNextProto: make(map[string]func(string, *tls.Conn) http.RoundTripper),
|
||||
ExpectContinueTimeout: 0,
|
||||
ForceAttemptHTTP2: true,
|
||||
TLSClientConfig: &tls.Config{},
|
||||
|
|
Loading…
Reference in New Issue
Block a user