mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 02:53:38 +00:00
23 lines
549 B
C++
23 lines
549 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(Poco::Net::HTTPServerRequest & /*request*/, Poco::Net::HTTPServerResponse & response)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
setResponseDefaultHeaders(response, keep_alive_timeout);
|
||
|
const char * data = "Ok.\n";
|
||
|
response.sendBuffer(data, strlen(data));
|
||
|
}
|
||
|
catch (...)
|
||
|
{
|
||
|
tryLogCurrentException("PingHandler");
|
||
|
}
|
||
|
}
|
||
|
}
|