rclone-dev:fix-freebsd-mount

Last commit made on 2019-12-10
Get this branch:
git clone -b fix-freebsd-mount https://git.launchpad.net/rclone-dev

Branch merges

Branch information

Name:
fix-freebsd-mount
Repository:
lp:rclone-dev

Recent commits

cebc3d7... by Nick Craig-Wood

vendor: patch fuse to try to fix #3697 - FIXME DO NOT MERGE VENDOR PATCH

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

572c107... by Nick Craig-Wood

fserrors: Make a new NoLowLevelRetry error and don't retry them #3777

cb97239... by Nick Craig-Wood

build: pin actions/checkout to v1 to fix build failure

e48145f... by Nick Craig-Wood

Add David Cole to contributors

2150cf7... by Nick Craig-Wood

Add email for Aleksandar Janković

707e51e... by david

docs: correct typo in gui docs

0d10640... by Nick Craig-Wood

s3: add --s3-copy-cutoff for size to switch to multipart copy

Before this change we used the same (relatively low limits) for server
side copy as we did for multipart uploads. It doesn't make sense to
use the same limits since no data is being downloaded or uploaded for
a server side copy.

This change introduces a new parameter --s3-copy-cutoff to control
when the switch from single to multipart server size copy happens and
defaults it to the maximum 5GB.

This makes server side copies much more efficient.

It also fixes the erroneous error when trying to set the modification
time of a file bigger than 5GB.

See #3778