Update s3 library

This commit is contained in:
Alexander Neumann 2016-01-03 21:50:59 +01:00
parent 61e66e936f
commit 181480b68b
3 changed files with 16 additions and 3 deletions

4
Godeps/Godeps.json generated
View File

@ -24,8 +24,8 @@
}, },
{ {
"ImportPath": "github.com/minio/minio-go", "ImportPath": "github.com/minio/minio-go",
"Comment": "v0.2.5-197-g45a4b10", "Comment": "v0.2.5-201-g410319e",
"Rev": "45a4b10109a2313378515d89cd3be55ff58c11c2" "Rev": "410319e0e39a372998f4d9cd2b9da4ff243ae388"
}, },
{ {
"ImportPath": "github.com/pkg/sftp", "ImportPath": "github.com/pkg/sftp",

View File

@ -1,9 +1,22 @@
sudo: false
language: go language: go
os:
- linux
- osx
env:
- ARCH=x86_64
- ARCH=i686
go: go:
- 1.5.1 - 1.5.1
- 1.5.2
script: script:
- go vet ./... - go vet ./...
- go test -test.short -race -v ./... - go test -test.short -race -v ./...
notifications: notifications:
slack: slack:
secure: HrOX2k6F/sEl6Rr4m5vHOdJCIwV42be0kz1Jy/WSMvrl/fQ8YkldKviLeWh4aWt1kclsYhNQ4FqGML+RIZYsdOqej4fAw9Vi5pZkI1MzPJq0UjrtMqkqzvD90eDGQYCKwaXjEIN8cohwJeb6X0B0HKAd9sqJW5GH5SwnhH5WWP8= secure: HrOX2k6F/sEl6Rr4m5vHOdJCIwV42be0kz1Jy/WSMvrl/fQ8YkldKviLeWh4aWt1kclsYhNQ4FqGML+RIZYsdOqej4fAw9Vi5pZkI1MzPJq0UjrtMqkqzvD90eDGQYCKwaXjEIN8cohwJeb6X0B0HKAd9sqJW5GH5SwnhH5WWP8=

View File

@ -102,7 +102,7 @@ func (c Client) makeBucketRequest(bucketName string, acl BucketACL, location str
// If endpoint supports virtual host style use that always. // If endpoint supports virtual host style use that always.
// Currently only S3 and Google Cloud Storage would support this. // Currently only S3 and Google Cloud Storage would support this.
if isVirtualHostSupported(c.endpointURL) { if isVirtualHostSupported(c.endpointURL) {
targetURL.Host = bucketName + "/" + c.endpointURL.Host targetURL.Host = bucketName + "." + c.endpointURL.Host
targetURL.Path = "/" targetURL.Path = "/"
} else { } else {
// If not fall back to using path style. // If not fall back to using path style.