From 4f386a1ccd4a773ffa09d9ad3e729c4b36520ccc Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 5 Dec 2022 17:06:59 +0000 Subject: [PATCH] s3: turn off list v2 support for Alibaba OSS since it does not work See: #6600 --- backend/s3/s3.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/s3/s3.go b/backend/s3/s3.go index 568805a6c..0cd82bb12 100644 --- a/backend/s3/s3.go +++ b/backend/s3/s3.go @@ -2730,6 +2730,7 @@ func setQuirks(opt *Options) { mightGzip = false // Never auto gzips objects case "Alibaba": useMultipartEtag = false // Alibaba seems to calculate multipart Etags differently from AWS + listObjectsV2 = false // See #6600 case "HuaweiOBS": // Huawei OBS PFS is not support listObjectV2, and if turn on the urlEncodeListing, marker will not work and keep list same page forever. urlEncodeListings = false