mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-21 22:43:52 +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"
|
"github.com/c9s/bbgo/pkg/types"
|
||||||
)
|
)
|
||||||
|
|
||||||
const defaultHTTPTimeout = time.Second * 2
|
const defaultHTTPTimeout = time.Second * 10
|
||||||
const RestBaseURL = "https://api.binance.com"
|
const RestBaseURL = "https://api.binance.com"
|
||||||
const SandboxRestBaseURL = "https://testnet.binance.vision"
|
const SandboxRestBaseURL = "https://testnet.binance.vision"
|
||||||
const DebugRequestResponse = false
|
const DebugRequestResponse = false
|
||||||
|
@ -37,7 +37,7 @@ var defaultTransport = &http.Transport{
|
||||||
MaxIdleConns: 100,
|
MaxIdleConns: 100,
|
||||||
MaxConnsPerHost: 100,
|
MaxConnsPerHost: 100,
|
||||||
MaxIdleConnsPerHost: 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,
|
ExpectContinueTimeout: 0,
|
||||||
ForceAttemptHTTP2: true,
|
ForceAttemptHTTP2: true,
|
||||||
TLSClientConfig: &tls.Config{},
|
TLSClientConfig: &tls.Config{},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user