From 9065e921c139c417ad8ebc19b367dc774ed5d8a6 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 27 Jun 2023 17:31:01 +0100 Subject: [PATCH] union: disable PartialUploads on integration tests failures In this commit we enabled PartialUploads for the union backend. 3faa84b47c6e84af 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. --- backend/union/union.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/union/union.go b/backend/union/union.go index c87b6e2d7..262fa6d0e 100644 --- a/backend/union/union.go +++ b/backend/union/union.go @@ -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 {