diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-12-14T15·45+0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-12-14T15·45+0100 |
commit | 5d5b931fb178046ba286b8ef2b56a00b3a85c51c (patch) | |
tree | 2120153539fa03fd533846c3f5322c37a260df7e /src/libstore/s3-binary-cache-store.cc | |
parent | 1ca8e9517808198080579a1105d3cf5b4e7ec64c (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.cc | 2 |
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)) { } |