1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 07:31:15 +02:00

Properly set the caFile for aws-sdk-cpp s3

This commit is contained in:
Shea Levy 2017-03-06 14:30:35 -05:00
parent 1cf4801108
commit 3cc18d3753
4 changed files with 6 additions and 2 deletions

View file

@ -77,6 +77,7 @@ ref<Aws::Client::ClientConfiguration> S3Helper::makeConfig()
res->region = Aws::Region::US_EAST_1; // FIXME: make configurable
res->requestTimeoutMs = 600 * 1000;
res->retryStrategy = std::make_shared<RetryStrategy>();
res->caFile = settings.caFile;
return res;
}