From 97be7873391d20f5db8bcae44032e4369558a6af Mon Sep 17 00:00:00 2001 From: Andrey Kostov Date: Thu, 5 Feb 2015 17:41:04 -0800 Subject: [PATCH] Change the default signature to v2 auth The reason we prefer v2 is that it performs better since it does not hash the payloads. --- storagedriver/s3/s3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storagedriver/s3/s3.go b/storagedriver/s3/s3.go index 0c16e3df5..c9d4ccbed 100644 --- a/storagedriver/s3/s3.go +++ b/storagedriver/s3/s3.go @@ -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)