diff options
author | Shea Levy <shea@shealevy.com> | 2017-03-12T14·01-0400 |
---|---|---|
committer | Shea Levy <shea@shealevy.com> | 2017-03-12T14·01-0400 |
commit | 96443e94a1932cff13f23d202839c53483b9290e (patch) | |
tree | fa341dec7b83b689377893e772cd62bd120775ec /src/libstore/s3.hh | |
parent | ae568847f5ee2dfd4226f30fa64fdc122623229b (diff) | |
parent | 5789eaa3f45cadec719b4f642de2169b8b0a56c4 (diff) |
Merge branch 'configurable-aws-region'
Diffstat (limited to 'src/libstore/s3.hh')
-rw-r--r-- | src/libstore/s3.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/s3.hh b/src/libstore/s3.hh index 5d5d3475c449..08a7fbf96e98 100644 --- a/src/libstore/s3.hh +++ b/src/libstore/s3.hh @@ -14,9 +14,9 @@ struct S3Helper ref<Aws::Client::ClientConfiguration> config; ref<Aws::S3::S3Client> client; - S3Helper(); + S3Helper(const std::string & region); - ref<Aws::Client::ClientConfiguration> makeConfig(); + ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region); struct DownloadResult { |