lordgamez commented on a change in pull request #1253: URL: https://github.com/apache/nifi-minifi-cpp/pull/1253#discussion_r816637791
########## File path: extensions/http-curl/tests/HTTPHandlers.h ########## @@ -385,15 +387,20 @@ std::string readPayload(struct mg_connection *conn) { class HeartbeatHandler : public ServerAwareHandler { public: - void sendStopOperation(struct mg_connection *conn) { - std::string resp = "{\"operation\" : \"heartbeat\", \"requested_operations\" : [{ \"operationid\" : 41, \"operation\" : \"stop\", \"operand\" : \"invoke\" }, " - "{ \"operationid\" : 42, \"operation\" : \"stop\", \"operand\" : \"FlowController\" } ]}"; - mg_printf(conn, "HTTP/1.1 200 OK\r\nContent-Type: " - "text/plain\r\nContent-Length: %lu\r\nConnection: close\r\n\r\n", - resp.length()); - mg_printf(conn, "%s", resp.c_str()); + virtual void handleHeartbeat(const rapidjson::Document& root, struct mg_connection *) { Review comment: These methods are defined here first so they cannot be overriden. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@nifi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org