mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Fix formatting
This commit is contained in:
parent
229945cdd2
commit
e8f4e4eb77
@ -55,14 +55,14 @@ Aws::Http::HeaderValueCollection CopyObjectRequest::GetRequestSpecificHeaders()
|
||||
void CompleteMultipartUploadRequest::SetAdditionalCustomHeaderValue(const Aws::String& headerName, const Aws::String& headerValue)
|
||||
{
|
||||
// S3's CompleteMultipartUpload doesn't support metadata headers so we skip adding them
|
||||
if(!headerName.starts_with("x-amz-meta-"))
|
||||
if (!headerName.starts_with("x-amz-meta-"))
|
||||
Model::CompleteMultipartUploadRequest::SetAdditionalCustomHeaderValue(headerName, headerValue);
|
||||
}
|
||||
|
||||
void UploadPartRequest::SetAdditionalCustomHeaderValue(const Aws::String& headerName, const Aws::String& headerValue)
|
||||
{
|
||||
// S3's UploadPart doesn't support metadata headers so we skip adding them
|
||||
if(!headerName.starts_with("x-amz-meta-"))
|
||||
if (!headerName.starts_with("x-amz-meta-"))
|
||||
Model::UploadPartRequest::SetAdditionalCustomHeaderValue(headerName, headerValue);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user