Use http.DefaultTransport as default transport

This commit is contained in:
Dmitry Maksimov 2014-03-10 09:29:15 +04:00
Родитель e15b0be910
Коммит da7984a023
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -113,7 +113,7 @@ func (codec *clientCodec) Close() error {
// NewClient returns instance of rpc.Client object, that is used to send request to xmlrpc service.
func NewClient(url string, transport http.RoundTripper) (*Client, error) {
if transport == nil {
transport = &http.Transport{}
transport = http.DefaultTransport
}
httpClient := &http.Client{Transport: transport}