rclone-dev:fix-zero-checks

Last commit made on 2019-12-20
Get this branch:
git clone -b fix-zero-checks https://git.launchpad.net/rclone-dev

Branch merges

Branch information

Name:
fix-zero-checks
Repository:
lp:rclone-dev

Recent commits

4948bfa... by Cnly

accounting: fix error count shown as checks

0ecb8bc... by Nick Craig-Wood

s3: fix url decoding of NextMarker - fixes #3799

Before this patch we were failing to URL decode the NextMarker when
url encoding was used for the listing.

The result of this was duplicated listings entries for directories
with >1000 entries where the NextMarker was a file containing a space.

1ab4985... by Nick Craig-Wood

vfs: when renaming files in the cache, rename the cache item in memory too

6e683b4... by Nick Craig-Wood

vfs: fix rename of open files when using the VFS cache

Before this change, renaming an open file when using the VFS cache was
delayed until the file was closed. This meant that the file was not
readable after a rename even though it is was in the cache.

After this change we rename the local cache file and the in memory
cache, delaying only the rename of the file in object storage.

See: https://forum.rclone.org/t/xen-orchestra-ebadf-bad-file-descriptor-write/13104

241921c... by Nick Craig-Wood

vfs: don't cache the path in RW file objects to fix renaming

a186284... by buengese <email address hidden>

asyncreader: fix EOF error

41ba1bb... by Ivan Andreev

chunker: reduce length of temporary suffix

50bb9b7... by Nick Craig-Wood

check: fix --one-way recursing more directories than it needs to

Before this change rclone traversed all directories in the destination.

After this change rclone doesn't traverse directories in the
destination that don't exist in the source if the `--one-way` flag is
set.

See: https://forum.rclone.org/t/check-with-one-way-flag-should-not-traverses-all-destination-directories/13263

4537d9b... by Nick Craig-Wood

operations: make reopen code error on NoLowLevelRetry errors - fixes #3777

684dbe0... by Nick Craig-Wood

local: make source file being updated errors be NoLowLevelRetry errors #3777