mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
23 lines
529 B
C++
23 lines
529 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)
|
|
{
|
|
try
|
|
{
|
|
setResponseDefaultHeaders(response, keep_alive_timeout);
|
|
const char * data = "Ok.\n";
|
|
response.sendBuffer(data, strlen(data));
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException("PingHandler");
|
|
}
|
|
}
|
|
}
|