mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Fix build
This commit is contained in:
parent
19550d5173
commit
8a455d347a
@ -8,9 +8,9 @@ namespace DB
|
|||||||
HTTPServer::HTTPServer(
|
HTTPServer::HTTPServer(
|
||||||
const Context & context,
|
const Context & context,
|
||||||
HTTPRequestHandlerFactoryPtr factory_,
|
HTTPRequestHandlerFactoryPtr factory_,
|
||||||
UInt16 portNumber,
|
UInt16 port_number,
|
||||||
Poco::Net::HTTPServerParams::Ptr params)
|
Poco::Net::HTTPServerParams::Ptr params)
|
||||||
: TCPServer(new HTTPServerConnectionFactory(context, params, factory_), portNumber, params), factory(factory_)
|
: TCPServer(new HTTPServerConnectionFactory(context, params, factory_), port_number, params), factory(factory_)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,10 +26,10 @@ HTTPServer::HTTPServer(
|
|||||||
HTTPServer::HTTPServer(
|
HTTPServer::HTTPServer(
|
||||||
const Context & context,
|
const Context & context,
|
||||||
HTTPRequestHandlerFactoryPtr factory_,
|
HTTPRequestHandlerFactoryPtr factory_,
|
||||||
Poco::ThreadPool & threadPool,
|
Poco::ThreadPool & thread_pool,
|
||||||
const Poco::Net::ServerSocket & socket,
|
const Poco::Net::ServerSocket & socket,
|
||||||
Poco::Net::HTTPServerParams::Ptr params)
|
Poco::Net::HTTPServerParams::Ptr params)
|
||||||
: TCPServer(new HTTPServerConnectionFactory(context, params, factory_), threadPool, socket, params), factory(factory_)
|
: TCPServer(new HTTPServerConnectionFactory(context, params, factory_), thread_pool, socket, params), factory(factory_)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user