From c4b019f6ee4279266191a55a5020669f639bf4c0 Mon Sep 17 00:00:00 2001 From: jonaustin09 Date: Wed, 29 Nov 2023 11:49:27 -0500 Subject: [PATCH] fix: Fixes #300, Removed Displayname field from ListBuckets output as it's not supported in the gateway --- backend/s3proxy/s3.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/s3proxy/s3.go b/backend/s3proxy/s3.go index f760b62a..d387670d 100644 --- a/backend/s3proxy/s3.go +++ b/backend/s3proxy/s3.go @@ -74,8 +74,7 @@ func (s *S3be) ListBuckets(ctx context.Context, owner string, isAdmin bool) (s3r return s3response.ListAllMyBucketsResult{ Owner: s3response.CanonicalUser{ - ID: *output.Owner.ID, - DisplayName: *output.Owner.DisplayName, + ID: *output.Owner.ID, }, Buckets: s3response.ListAllMyBucketsList{ Bucket: buckets,