mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
dbms: development [#CONV-2944].
This commit is contained in:
parent
2fd184302d
commit
ee63a57267
@ -59,7 +59,7 @@ void TCPHandler::runImpl()
|
||||
while (1)
|
||||
{
|
||||
/// Ждём пакета от клиента. При этом, каждые POLL_INTERVAL сек. проверяем, не требуется ли завершить работу.
|
||||
while (!in->poll(global_settings.poll_interval) && !Daemon::instance().isCancelled())
|
||||
while (!in->poll(global_settings.poll_interval * 1000000) && !Daemon::instance().isCancelled())
|
||||
;
|
||||
|
||||
/// Если требуется завершить работу, или клиент отсоединился.
|
||||
|
Loading…
Reference in New Issue
Block a user