| 40 | namespace |
| 41 | { |
| 42 | void processError(HTTPServerResponse & response, const String & message) |
| 43 | { |
| 44 | response.setStatusAndReason(HTTPResponse::HTTP_INTERNAL_SERVER_ERROR); |
| 45 | |
| 46 | if (!response.sent()) |
| 47 | *response.send() << message << std::endl; |
| 48 | |
| 49 | LOG_WARNING(&Poco::Logger::get("LibraryBridge"), (message)); |
| 50 | } |
| 51 | |
| 52 | std::shared_ptr<Block> parseColumns(String && column_string) |
| 53 | { |
no test coverage detected