Browse Source

adjust test code

pull/2348/head
Chris Lu 3 years ago
parent
commit
ecaab0e048
  1. 10
      test/s3/multipart/aws_upload.go

10
test/s3/multipart/aws_upload.go

@ -19,10 +19,10 @@ import (
const ( const (
maxPartSize = int64(5 * 1024 * 1024) maxPartSize = int64(5 * 1024 * 1024)
maxRetries = 3 maxRetries = 3
awsAccessKeyID = "Your access key"
awsSecretAccessKey = "Your secret key"
awsBucketRegion = "S3 bucket region"
awsBucketName = "newBucket"
awsAccessKeyID = "any"
awsSecretAccessKey = "any"
awsBucketRegion = "us‑west‑1"
awsBucketName = "bucket1"
) )
var ( var (
@ -37,7 +37,7 @@ func main() {
if err != nil { if err != nil {
fmt.Printf("bad credentials: %s", err) fmt.Printf("bad credentials: %s", err)
} }
cfg := aws.NewConfig().WithRegion(awsBucketRegion).WithCredentials(creds).WithDisableSSL(true).WithEndpoint("localhost:8333")
cfg := aws.NewConfig().WithRegion(awsBucketRegion).WithCredentials(creds).WithDisableSSL(true).WithEndpoint("localhost:8333").WithS3ForcePathStyle(true)
svc := s3.New(session.New(), cfg) svc := s3.New(session.New(), cfg)
file, err := os.Open(*filename) file, err := os.Open(*filename)

Loading…
Cancel
Save