mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-20 14:42:02 +00:00
Fix
This commit is contained in:
parent
9ee6896916
commit
0a702d9520
@ -528,16 +528,17 @@ namespace detail
|
|||||||
|
|
||||||
auto on_retriable_error = [&]()
|
auto on_retriable_error = [&]()
|
||||||
{
|
{
|
||||||
retry_with_range_header = true;
|
retry_with_range_header = true;
|
||||||
impl.reset();
|
impl.reset();
|
||||||
auto http_session = session->getSession();
|
auto http_session = session->getSession();
|
||||||
http_session->reset();
|
http_session->reset();
|
||||||
sleepForMilliseconds(milliseconds_to_wait);
|
sleepForMilliseconds(milliseconds_to_wait);
|
||||||
};
|
};
|
||||||
|
|
||||||
for (size_t i = 0; i < settings.http_max_tries; ++i)
|
for (size_t i = 0; i < settings.http_max_tries; ++i)
|
||||||
{
|
{
|
||||||
exception = nullptr;
|
exception = nullptr;
|
||||||
|
initialization_error = InitializeError::NONE;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user