mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Fixed termination with 'Socket not connected' error [#METR-2944].
This commit is contained in:
parent
df316f8586
commit
309736ad44
@ -4,6 +4,7 @@
|
||||
#include <Poco/Util/XMLConfiguration.h>
|
||||
|
||||
#include <Yandex/ApplicationServerExt.h>
|
||||
#include <Yandex/ErrorHandlers.h>
|
||||
#include <statdaemons/ConfigProcessor.h>
|
||||
#include <statdaemons/ext/memory.hpp>
|
||||
|
||||
@ -342,6 +343,9 @@ int Server::main(const std::vector<std::string> & args)
|
||||
}
|
||||
}
|
||||
|
||||
static ServerErrorHandler error_handler;
|
||||
Poco::ErrorHandler::set(&error_handler);
|
||||
|
||||
/// Заранее инициализируем DateLUT, чтобы первая инициализация потом не влияла на измеряемую скорость выполнения.
|
||||
LOG_DEBUG(log, "Initializing DateLUT.");
|
||||
DateLUT::instance();
|
||||
|
Loading…
Reference in New Issue
Block a user