mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-30 11:32:03 +00:00
Fix clang tidy
This commit is contained in:
parent
bb6bc61f22
commit
06730743e6
@ -321,9 +321,9 @@ StorageURLWithFailover::StorageURLWithFailover(
|
|||||||
{
|
{
|
||||||
for (const auto & uri_option : uri_options_)
|
for (const auto & uri_option : uri_options_)
|
||||||
{
|
{
|
||||||
Poco::URI uri_(uri_option);
|
Poco::URI poco_uri(uri_option);
|
||||||
context_->getRemoteHostFilter().checkURL(uri_);
|
context_->getRemoteHostFilter().checkURL(poco_uri);
|
||||||
uri_options.emplace_back(std::move(uri_));
|
uri_options.emplace_back(std::move(poco_uri));
|
||||||
LOG_DEBUG(&Poco::Logger::get("StorageURLDistributed"), "Adding URL option: {}", uri_option);
|
LOG_DEBUG(&Poco::Logger::get("StorageURLDistributed"), "Adding URL option: {}", uri_option);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user