add CORS headers to rsEvents/registerEventsHandler

This commit is contained in:
Mohammed Saud 2021-03-19 23:10:43 +05:30
parent 5b1b0cadf9
commit bf41f8ad92

View File

@ -361,11 +361,9 @@ JsonApiServer::JsonApiServer(): configMutex("JsonApiServer config"),
[this](const std::shared_ptr<rb::Session> session) [this](const std::shared_ptr<rb::Session> session)
{ {
const std::weak_ptr<rb::Service> weakService(mService); const std::weak_ptr<rb::Service> weakService(mService);
const std::multimap<std::string, std::string> headers auto headers = corsHeaders;
{ headers.insert({ "Connection", "keep-alive" });
{ "Connection", "keep-alive" }, headers.insert({ "Content-Type", "text/event-stream" });
{ "Content-Type", "text/event-stream" }
};
session->yield(rb::OK, headers); session->yield(rb::OK, headers);
size_t reqSize = static_cast<size_t>( size_t reqSize = static_cast<size_t>(