Skip to content

Commit 897f672

Browse files
committed
Hint to CPP analyzer to reinitialize.
1 parent eeae094 commit 897f672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/httpserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class http_connection : public std::enable_shared_from_this<http_connection>
158158
beast::ostream(response_.body()) << lambda_(std::move(url));
159159
} else if (target.find("/api/reinit") == 0) {
160160
response_.set(http::field::content_type, "text/plain");
161-
beast::ostream(response_.body()) << "Received Reinitialize Request OK\r\n";
161+
beast::ostream(response_.body()) << "REINITReceived Reinitialize Request OK\r\n";
162162
} else {
163163
response_.result(http::status::not_found);
164164
response_.set(http::field::content_type, "text/plain");

0 commit comments

Comments
 (0)