union: disable PartialUploads on integration tests failures

In this commit we enabled PartialUploads for the union backend.

3faa84b47c combine,compress,crypt,hasher,union: support wrapping backends with PartialUploads

This turns out to cause test failures in fs/sync so this commit
disables them again pending further investigation.
This commit is contained in:
Nick Craig-Wood 2023-06-27 17:31:01 +01:00
parent 99788b605e
commit 9065e921c1

View File

@ -902,7 +902,7 @@ func NewFs(ctx context.Context, name, root string, m configmap.Mapper) (fs.Fs, e
ReadMetadata: true,
WriteMetadata: true,
UserMetadata: true,
PartialUploads: true,
// PartialUploads: true // this causes the fs/sync tests to fail
}).Fill(ctx, f)
canMove, slowHash := true, false
for _, f := range upstreams {