mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:20:06 +00:00
General GCC compilation fixes
This commit is contained in:
parent
c7aba95233
commit
023688b746
19 changed files with 57 additions and 53 deletions
|
|
@ -158,13 +158,15 @@ void AwsLevel3DataProvider::Impl::ListProducts()
|
|||
|
||||
logger_->debug("ListProducts()");
|
||||
|
||||
static const std::string delimiter {"_"};
|
||||
|
||||
// Prefix format: GGG_
|
||||
const std::string prefix = fmt::format("{0}_", siteId_);
|
||||
|
||||
Aws::S3::Model::ListObjectsV2Request request;
|
||||
request.SetBucket(bucketName_);
|
||||
request.SetPrefix(prefix);
|
||||
request.SetDelimiter("_");
|
||||
request.SetDelimiter(delimiter);
|
||||
|
||||
auto outcome = self_->client()->ListObjectsV2(request);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue