mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Merge pull request #54438 from canhld94/fix_http_timeout
Pass http retry timeout as milliseconds
This commit is contained in:
commit
bfca5f735a
@ -321,7 +321,7 @@ namespace
|
|||||||
/// To avoid such a deadlock we unlock `lock` before entering `pool_ptr->second->get`.
|
/// To avoid such a deadlock we unlock `lock` before entering `pool_ptr->second->get`.
|
||||||
lock.unlock();
|
lock.unlock();
|
||||||
|
|
||||||
auto retry_timeout = timeouts.connection_timeout.totalMicroseconds();
|
auto retry_timeout = timeouts.connection_timeout.totalMilliseconds();
|
||||||
auto session = pool_ptr->second->get(retry_timeout);
|
auto session = pool_ptr->second->get(retry_timeout);
|
||||||
|
|
||||||
setTimeouts(*session, timeouts);
|
setTimeouts(*session, timeouts);
|
||||||
|
Loading…
Reference in New Issue
Block a user