rclone-dev:fix-s3-memory

Last commit made on 2019-12-29
Get this branch:
git clone -b fix-s3-memory https://git.launchpad.net/rclone-dev

Branch merges

Branch information

Name:
fix-s3-memory
Repository:
lp:rclone-dev

Recent commits

e332d3e... by Nick Craig-Wood

vendor: update github.com/aws/aws-sdk-go to v1.26.8 from v1.25.31

To fix s3 memory usage problems

See: https://forum.rclone.org/t/memory-usage-s3-alike-to-glacier-without-big-directories/13563
See: https://forum.rclone.org/t/copy-from-local-to-s3-has-high-memory-usage/13405

207474a... by Nick Craig-Wood

sync: add --no-check-dest flag - fixes #3616

f754d89... by Nick Craig-Wood

Add Wei He to contributors

4daecd3... by Wei He <email address hidden>

docs: fix in-page anchor navigation positioning

59c75ba... by Cnly

accounting: fix error count shown as checks - fixes #3814

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