Yandex Disk: Use http.Client passed in for all operations - fixes logging.
This commit is contained in:
parent
c2e8f06bfa
commit
b1dd8e998b
4 changed files with 4 additions and 4 deletions
|
@ -16,7 +16,7 @@ func (c *Client) PerformDelete(url string) error {
|
|||
//set access token and headers
|
||||
c.setRequestScope(req)
|
||||
|
||||
resp, err := http.DefaultClient.Do(req)
|
||||
resp, err := c.HTTPClient.Do(req)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ func (c *Client) PerformDownload(url string) (out io.ReadCloser, err error) {
|
|||
|
||||
//c.setRequestScope(req)
|
||||
|
||||
resp, err := http.DefaultClient.Do(req)
|
||||
resp, err := c.HTTPClient.Do(req)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ func (c *Client) PerformMkdir(url string) (int, string, error) {
|
|||
//set access token and headers
|
||||
c.setRequestScope(req)
|
||||
|
||||
resp, err := http.DefaultClient.Do(req)
|
||||
resp, err := c.HTTPClient.Do(req)
|
||||
if err != nil {
|
||||
return 0, "", err
|
||||
}
|
||||
|
|
|
@ -18,7 +18,7 @@ func (c *Client) PerformUpload(url string, data io.Reader) (err error) {
|
|||
|
||||
//c.setRequestScope(req)
|
||||
|
||||
resp, err := http.DefaultClient.Do(req)
|
||||
resp, err := c.HTTPClient.Do(req)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue