forked from TrueCloudLab/rclone
acd: fix typo in log message for temp link download
This commit is contained in:
parent
06a3502ed8
commit
7b4f368307
1 changed files with 1 additions and 1 deletions
|
@ -983,7 +983,7 @@ func (o *Object) Storable() bool {
|
||||||
func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) {
|
func (o *Object) Open(options ...fs.OpenOption) (in io.ReadCloser, err error) {
|
||||||
bigObject := o.Size() >= int64(tempLinkThreshold)
|
bigObject := o.Size() >= int64(tempLinkThreshold)
|
||||||
if bigObject {
|
if bigObject {
|
||||||
fs.Debugf(o, "Dowloading large object via tempLink")
|
fs.Debugf(o, "Downloading large object via tempLink")
|
||||||
}
|
}
|
||||||
file := acd.File{Node: o.info}
|
file := acd.File{Node: o.info}
|
||||||
var resp *http.Response
|
var resp *http.Response
|
||||||
|
|
Loading…
Reference in a new issue