WebDav Chunk Upload Notice

What is the problem you are having with rclone?

copying a file from or to a webdav remote returns a notice the following notice:
2024/02/01 15:47:01 NOTICE: Chunks temporary upload directory: https://nube.uclv.cu/remote.php/dav/uploads/username/
i think this message should not appear because is not something important for the user, just for rclone itself

Run the command 'rclone version' and share the full output of the command.

rclone v1.65.2

  • os/version: Microsoft Windows 10 Pro 22H2 (64 bit)
  • os/kernel: 10.0.19045.3086 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.21.6
  • go/linking: static
  • go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

WebDav, Nextcloud

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone copy mega:/file.txt webdav:/

The rclone config contents with secrets removed.

[webdav]
type = webdav
url = https://nube.uclv.cu/remote.php/dav/files/username/
vendor = nextcloud
user = username
pass = password

[mega]
type = mega
user = username
pass = password

A log from the command with the -vv flag


2024/02/01 16:22:59 DEBUG : Creating backend with remote "mega:/file.txt"
2024/02/01 16:22:59 DEBUG : Using config file from "C:\\Users\username\\AppData\\Roaming\\rclone\\rclone.conf"
2024/02/01 16:23:01 DEBUG : fs cache: adding new entry for parent of "mega:/file.txt", "mega:"
2024/02/01 16:23:01 DEBUG : Creating backend with remote "webdav:/"
2024/02/01 16:23:01 DEBUG : found headers:
2024/02/01 16:23:01 NOTICE: Chunks temporary upload directory: https://nube.uclv.cu/remote.php/dav/uploads/username/
2024/02/01 16:23:01 DEBUG : fs cache: renaming cache item "mega:/" to be canonical "mega:"
2024/02/01 16:23:01 DEBUG : file.txt: Need to transfer - File not found at Destination
2024/02/01 16:23:02 DEBUG : file.txt: Update will use the normal upload strategy (no chunks)
2024/02/01 16:23:03 DEBUG : file.txt: sha1 = 9686379a63d0100329733f6f2fdc1e20473f9af0 OK
2024/02/01 16:23:03 INFO  : file.txt: Copied (new)
2024/02/01 16:23:03 INFO  :
Transferred:      359.632 KiB / 359.632 KiB, 100%, 127.015 KiB/s, ETA 0s
Transferred:            1 / 1, 100%
Elapsed time:         4.4s

2024/02/01 16:23:03 DEBUG : 7 go routines active

I think you are right.

If you were to change the fs.Logf to fs.Debugf in this line

Then that would fix it. You can do that in the online editor at github if you want.

did it already, waiting for the approval of the pull request

2 Likes

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.