Merge pull request #149 from AndreyKostov/s3-change-default-signature

storagedriver/s3: Change the default signature to v2 auth
pull/153/head
Stephen Day 2015-02-06 15:59:35 -08:00
commit 05600271d7
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ func FromParameters(parameters map[string]interface{}) (*Driver, error) {
}
}
v4AuthBool := true
v4AuthBool := false
v4Auth, ok := parameters["v4auth"]
if ok {
v4AuthBool, ok = v4Auth.(bool)