Rclone b2 debug message EOF

What is the problem you are having with rclone?

Seen this debug msg error decoding response EOF while copy data to b2 crypt bucket. Only happens with b2.
DEBUG : Couldn't decode error response: EOF

I tested creating new bucket and new access key on b2, seen similar error. I managed to reproduce similar error on ubuntu 20.04 as well. And when i tested on wasabi, onedrive backend, no such error seen.
While with b2 it showed this error on debug log, all data managed to be copied succesfully. Not sure if this is something i should worry about?

Thanks.

What is your rclone version (output from rclone version)

rclone v1.55.1

  • os/type: darwin
  • os/arch: amd64
  • go/version: go1.16.3
  • go/linking: dynamic
  • go/tags: cmount

Which OS you are using and how many bits (eg Windows 7, 64 bit)

catalina 64 bit

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

B2

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

rclone copy 50M.test b2: -vv

The rclone config contents with secrets removed.

[backblaze]
type = b2
account = REDACTED
key = REDACTED

[b2]
type = crypt
remote = backblaze:personalbucket1
filename_encryption = standard
directory_name_encryption = true
password = REDACTED
password2 = REDACTED

A log from the command with the -vv flag

xyxyx1-MacBook-Pro:rclone1 xyxyx1$ rclone copy 50M.test b2: -vv
2021/05/11 11:57:43 DEBUG : Using config file from "/Users/xyxyx1/rclone/test.conf"
2021/05/11 11:57:43 DEBUG : rclone: Version "v1.55.1" starting with parameters ["rclone" "copy" "50M.test" "b2:" "-vv"]
2021/05/11 11:57:43 DEBUG : Creating backend with remote "50M.test"
2021/05/11 11:57:43 DEBUG : fs cache: adding new entry for parent of "50M.test", "/Users/xyxyx1/rclone"
2021/05/11 11:57:43 DEBUG : Creating backend with remote "b2:"
2021/05/11 11:57:43 DEBUG : Creating backend with remote "backblaze:personalbucket1"
2021/05/11 11:57:44 DEBUG : Couldn't decode error response: EOF
2021/05/11 11:57:44 DEBUG : 50M.test: Need to transfer - File not found at Destination
2021/05/11 11:57:44 DEBUG : 50M.test: Computing SHA-1 hash of encrypted source
2021/05/11 11:58:27 DEBUG : 50M.test: SHA-1 = f1cb7ce19ba46acf2a126395f219661b7cbc5335 OK
2021/05/11 11:58:27 INFO  : 50M.test: Copied (new)
2021/05/11 11:58:27 INFO  :
Transferred:   	   50.012M / 50.012 MBytes, 100%, 1.162 MBytes/s, ETA 0s
Transferred:            1 / 1, 100%
Elapsed time:        44.2s

I think that is caused by rclone trying to create the bucket, and getting a message back that it is already created. That message doesn't have a JSON error attached hence the EOF (end of file).

You can ignore that debug - it makes no difference to anything!

perfect! thank you! :slight_smile:

1 Like

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