Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
xielei committed Jan 13, 2024
1 parent a22dd7f commit b435a9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Disks/ObjectStorages/S3/S3ObjectStorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class S3IteratorAsync final : public IObjectStorageIteratorAsync
return result;
}

throw S3Exception(outcome.GetError().GetErrorType(), "Could not list objects in bucket {} with prefix {}, S3 exception: {}, message: {}",
throw S3Exception(outcome.GetError().GetErrorType(), "Could2 not list objects in bucket {} with prefix {}, S3 exception: {}, message: {}",
quoteString(request.GetBucket()), quoteString(request.GetPrefix()),
backQuote(outcome.GetError().GetExceptionName()), quoteString(outcome.GetError().GetMessage()));
}
Expand Down
2 changes: 1 addition & 1 deletion src/Storages/DataLakes/S3MetadataReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ std::vector<String> S3DataLakeMetadataReadHelper::listFiles(
if (!outcome.IsSuccess())
throw S3Exception(
outcome.GetError().GetErrorType(),
"Could not list objects in bucket {} with key {}, S3 exception: {}, message: {}",
"Could1 not list objects in bucket {} with key {}, S3 exception: {}, message: {}",
quoteString(bucket),
quoteString(base_configuration.url.key),
backQuote(outcome.GetError().GetExceptionName()),
Expand Down
2 changes: 1 addition & 1 deletion src/Storages/StorageS3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ class StorageS3Source::DisclosedGlobIterator::Impl : WithContext

if (!outcome.IsSuccess())
{
throw S3Exception(outcome.GetError().GetErrorType(), "Could not list objects in bucket {} with prefix {}, S3 exception: {}, message: {}",
throw S3Exception(outcome.GetError().GetErrorType(), "Could3 not list objects in bucket {} with prefix {}, S3 exception: {}, message: {}",
quoteString(request.GetBucket()), quoteString(request.GetPrefix()),
backQuote(outcome.GetError().GetExceptionName()), quoteString(outcome.GetError().GetMessage()));
}
Expand Down

0 comments on commit b435a9e

Please sign in to comment.