Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport #49194 to 23.4: Revert "Fix GCS native copy (#48981)" #49277

Merged
merged 1 commit into from Apr 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/IO/S3/PocoHTTPClient.cpp
Expand Up @@ -260,6 +260,7 @@ void PocoHTTPClient::makeRequestInternal(
Poco::Logger * log = &Poco::Logger::get("AWSClient");

auto uri = request.GetUri().GetURIString();
#if 0
auto provider_type = getProviderTypeFromURL(uri);

if (provider_type == ProviderType::GCS)
Expand All @@ -269,6 +270,7 @@ void PocoHTTPClient::makeRequestInternal(
request.DeleteHeader("amz-sdk-invocation-id");
request.DeleteHeader("amz-sdk-request");
}
#endif

if (enable_s3_requests_logging)
LOG_TEST(log, "Make request to: {}", uri);
Expand Down