diff --git a/README.md b/README.md index 8ff2a17c..c8fea4b0 100644 --- a/README.md +++ b/README.md @@ -37,10 +37,7 @@ Given a JSON config file (`config.json`)... "multipart_upload": " (optional - default: true)", } ``` -> Note: Provider specific configuration (automatically set to false by parsing the provided 'host') : -> 1. **multipart_upload** - not supported by Google -> 1. **request_checksum_calculation_enabled** - not supported by Google and AliCloud -> 2. **uploader_checksum_calculation_enabled** - not supported by AliCloud +> Note: **multipart_upload** is not supported by Google - it's automatically set to false by parsing the provided 'host' ``` bash # Usage diff --git a/integration/s3_compatible_test.go b/integration/s3_compatible_test.go index 12b48584..51d5a820 100644 --- a/integration/s3_compatible_test.go +++ b/integration/s3_compatible_test.go @@ -30,13 +30,6 @@ var _ = Describe("Testing in any non-AWS, S3 compatible storage service", func() }) configurations := []TableEntry{ - Entry("with the minimal configuration", &config.S3Cli{ - AccessKeyID: accessKeyID, - SecretAccessKey: secretAccessKey, - BucketName: bucketName, - Host: s3Host, - MultipartUpload: true, - }), Entry("with region specified", &config.S3Cli{ AccessKeyID: accessKeyID, SecretAccessKey: secretAccessKey, @@ -50,6 +43,7 @@ var _ = Describe("Testing in any non-AWS, S3 compatible storage service", func() SecretAccessKey: secretAccessKey, BucketName: bucketName, Host: s3Host, + Region: "invalid-region", UseSSL: false, MultipartUpload: true, }),