internal: Increase limitDial timeout from 500ms to 10s (#210)

Increase internal.limitDial's timeout from 500ms to 10s, to account for differences in the go111 legacy API endpoint.
This commit is contained in:
Steven Buss 2019-09-19 14:55:17 -07:00 коммит произвёл GitHub
Родитель 5f2a595063
Коммит c71d63e301
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,7 @@ func limitDial(network, addr string) (net.Conn, error) {
// Dial with a timeout in case the API host is MIA. // Dial with a timeout in case the API host is MIA.
// The connection should normally be very fast. // The connection should normally be very fast.
conn, err := net.DialTimeout(network, addr, 500*time.Millisecond) conn, err := net.DialTimeout(network, addr, 10*time.Second)
if err != nil { if err != nil {
limitRelease() limitRelease()
return nil, err return nil, err