about summary refs log tree commit diff
path: root/src/libstore/s3-binary-cache-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2017-12-14T15·45+0100
committerEelco Dolstra <edolstra@gmail.com>2017-12-14T15·45+0100
commit5d5b931fb178046ba286b8ef2b56a00b3a85c51c (patch)
tree2120153539fa03fd533846c3f5322c37a260df7e /src/libstore/s3-binary-cache-store.cc
parent1ca8e9517808198080579a1105d3cf5b4e7ec64c (diff)
Fix build against current aws-sdk-cpp
Diffstat (limited to 'src/libstore/s3-binary-cache-store.cc')
-rw-r--r--src/libstore/s3-binary-cache-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/s3-binary-cache-store.cc b/src/libstore/s3-binary-cache-store.cc
index 0079da1becfb..f5b6a9125cef 100644
--- a/src/libstore/s3-binary-cache-store.cc
+++ b/src/libstore/s3-binary-cache-store.cc
@@ -87,7 +87,7 @@ S3Helper::S3Helper(const std::string & profile, const std::string & region)
                 std::make_shared<Aws::Auth::DefaultAWSCredentialsProviderChain>())
             : std::dynamic_pointer_cast<Aws::Auth::AWSCredentialsProvider>(
                 std::make_shared<Aws::Auth::ProfileConfigFileAWSCredentialsProvider>(profile.c_str())),
-            *config, true, false))
+            *config, Aws::Client::AWSAuthV4Signer::PayloadSigningPolicy::Never, false))
 {
 }