Commit 75493410 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fix typo

parent 5db8473f
...@@ -136,7 +136,7 @@ void on_stream_close_callback(spdylay_session *session, int32_t stream_id, ...@@ -136,7 +136,7 @@ void on_stream_close_callback(spdylay_session *session, int32_t stream_id,
if (downstream->get_request_state() == Downstream::CONNECT_FAIL) { if (downstream->get_request_state() == Downstream::CONNECT_FAIL) {
upstream->remove_downstream(downstream); upstream->remove_downstream(downstream);
// downstrea was deleted // downstream was deleted
return; return;
} }
...@@ -153,7 +153,7 @@ void on_stream_close_callback(spdylay_session *session, int32_t stream_id, ...@@ -153,7 +153,7 @@ void on_stream_close_callback(spdylay_session *session, int32_t stream_id,
// If shrpx_downstream::push_request_headers() failed, the // If shrpx_downstream::push_request_headers() failed, the
// error is handled here. // error is handled here.
upstream->remove_downstream(downstream); upstream->remove_downstream(downstream);
// downstrea was deleted // downstream was deleted
// How to test this case? Request sufficient large download // How to test this case? Request sufficient large download
// and make client send RST_STREAM after it gets first DATA // and make client send RST_STREAM after it gets first DATA
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment