mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
23 lines
575 B
C++
23 lines
575 B
C++
#include "PingHandler.h"
|
|
#include <Poco/Net/HTTPServerRequest.h>
|
|
#include <Poco/Net/HTTPServerResponse.h>
|
|
#include <Common/Exception.h>
|
|
#include <IO/HTTPCommon.h>
|
|
|
|
namespace DB
|
|
{
|
|
void PingHandler::handleRequest(HTTPServerRequest & /* request */, HTTPServerResponse & response, const ProfileEvents::Event & /*write_event*/)
|
|
{
|
|
try
|
|
{
|
|
setResponseDefaultHeaders(response, keep_alive_timeout);
|
|
const char * data = "Ok.\n";
|
|
response.sendBuffer(data, strlen(data));
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException("PingHandler");
|
|
}
|
|
}
|
|
}
|