1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-08-20 16:50:43 +02:00

always use non bucket prefixing url

This commit is contained in:
Chris Lu 2021-02-28 16:20:13 -08:00
parent 9abb041763
commit 984fdd6192

View file

@ -76,6 +76,7 @@ func (s3sink *S3Sink) initialize(awsAccessKeyId, awsSecretAccessKey, region, buc
config := &aws.Config{
Region: aws.String(s3sink.region),
Endpoint: aws.String(s3sink.endpoint),
S3ForcePathStyle: aws.Bool(true),
}
if awsAccessKeyId != "" && awsSecretAccessKey != "" {
config.Credentials = credentials.NewStaticCredentials(awsAccessKeyId, awsSecretAccessKey, "")