diff --git a/core/storageproviders/s3Storage.go b/core/storageproviders/s3Storage.go index 779185902..b689b2184 100644 --- a/core/storageproviders/s3Storage.go +++ b/core/storageproviders/s3Storage.go @@ -173,10 +173,9 @@ func (s *S3Storage) connectAWS() *session.Session { sess, err := session.NewSession( &aws.Config{ - Region: aws.String(s.s3Region), - Credentials: creds, - Endpoint: aws.String(s.s3Endpoint), - S3ForcePathStyle: aws.Bool(true), + Region: aws.String(s.s3Region), + Credentials: creds, + Endpoint: aws.String(s.s3Endpoint), }, )