From 7b0eee598e5824673db2a75c806de4745f78fc55 Mon Sep 17 00:00:00 2001 From: Joao Marcal Date: Fri, 19 Apr 2024 16:53:12 +0100 Subject: [PATCH] Removed unused error message --- pkg/storage/bucket/s3/config.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/storage/bucket/s3/config.go b/pkg/storage/bucket/s3/config.go index 4e47575256f19..eb836edf08dad 100644 --- a/pkg/storage/bucket/s3/config.go +++ b/pkg/storage/bucket/s3/config.go @@ -31,7 +31,6 @@ var ( supportedSSETypes = []string{SSEKMS, SSES3} errUnsupportedSSEType = errors.New("unsupported S3 SSE type") errInvalidSSEContext = errors.New("invalid S3 SSE encryption context") - errInvalidEndpointPrefix = errors.New("the endpoint must not prefixed with the bucket name") ) // HTTPConfig stores the http.Transport configuration for the s3 minio client.