summaryrefslogtreecommitdiff
path: root/http/server_sent_event.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/server_sent_event.hpp')
-rw-r--r--http/server_sent_event.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/http/server_sent_event.hpp b/http/server_sent_event.hpp
index 773394836f..49002f60db 100644
--- a/http/server_sent_event.hpp
+++ b/http/server_sent_event.hpp
@@ -97,11 +97,11 @@ class ConnectionImpl : public Connection
boost::beast::http::status::ok, 11, BodyType{});
res.set(boost::beast::http::field::content_type, "text/event-stream");
res.body().more = true;
- boost::beast::http::response_serializer<BodyType>& ser =
+ boost::beast::http::response_serializer<BodyType>& serial =
serializer.emplace(std::move(res));
boost::beast::http::async_write_header(
- adaptor, ser,
+ adaptor, serial,
std::bind_front(&ConnectionImpl::sendSSEHeaderCallback, this,
shared_from_this()));
}
@@ -257,7 +257,7 @@ class ConnectionImpl : public Connection
if (ec == boost::asio::error::operation_aborted)
{
BMCWEB_LOG_DEBUG("operation aborted");
- // Canceled wait means the path succeeeded.
+ // Canceled wait means the path succeeded.
return;
}
if (ec)