mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
Merge branch 'url_engine_problem' of https://github.com/millb/ClickHouse into url_engine_problem
This commit is contained in:
commit
b0875c75c8
@ -24,6 +24,8 @@ ReadBufferFromS3::ReadBufferFromS3(Poco::URI uri_,
|
||||
Poco::Net::HTTPResponse response;
|
||||
std::unique_ptr<Poco::Net::HTTPRequest> request;
|
||||
|
||||
LOG_DEBUG(&Poco::Logger::get("DebugLogger"), "???? " + uri.toString() + " ????");
|
||||
|
||||
for (int i = 0; i < DEFAULT_S3_MAX_FOLLOW_GET_REDIRECT; ++i)
|
||||
{
|
||||
// With empty path poco will send "POST HTTP/1.1" its bug.
|
||||
@ -52,6 +54,7 @@ ReadBufferFromS3::ReadBufferFromS3(Poco::URI uri_,
|
||||
break;
|
||||
|
||||
uri = location_iterator->second;
|
||||
LOG_DEBUG(&Poco::Logger::get("DebugLogger"), "!!!! " + uri.toString() + "!!!!");
|
||||
remote_host_filter.checkURL(uri);
|
||||
session = makeHTTPSession(uri, timeouts);
|
||||
}
|
||||
|
@ -108,6 +108,7 @@ void WriteBufferFromS3::initiate()
|
||||
{
|
||||
initiate_uri.addQueryParameter(param.first, param.second);
|
||||
}
|
||||
LOG_DEBUG(&Poco::Logger::get("DebugLogger"), "???Write "+ uri.toString() + " ???");
|
||||
|
||||
for (int i = 0; i < DEFAULT_S3_MAX_FOLLOW_PUT_REDIRECT; ++i)
|
||||
{
|
||||
@ -139,6 +140,7 @@ void WriteBufferFromS3::initiate()
|
||||
break;
|
||||
|
||||
initiate_uri = location_iterator->second;
|
||||
LOG_DEBUG(&Poco::Logger::get("DebugLogger"), "!!!Write " + initiate_uri.toString() + " !!!");
|
||||
remote_host_filter.checkURL(initiate_uri);
|
||||
}
|
||||
assertResponseIsOk(*request_ptr, response, *istr);
|
||||
|
Loading…
Reference in New Issue
Block a user