diff options
author | Stefan Eissing <icing@apache.org> | 2020-05-15 13:59:32 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2020-05-15 13:59:32 +0200 |
commit | 00977256ef92e5a1d29b9c9264d849ddd578d0a0 (patch) | |
tree | 0ef54bd39a49289679d7ca85a4380ab0e621f291 /modules/http2/h2_session.c | |
parent | Include Angle-bracket form to Quoted form (diff) | |
download | apache2-00977256ef92e5a1d29b9c9264d849ddd578d0a0.tar.xz apache2-00977256ef92e5a1d29b9c9264d849ddd578d0a0.zip |
*) mod_http2: Fixed regression that caused connections to close when mod_reqtimeout
was configured with a handshake timeout. Fixes gitub issue #196.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1877783 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_session.c')
-rw-r--r-- | modules/http2/h2_session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_session.c b/modules/http2/h2_session.c index f7538316e1..4e48762c5b 100644 --- a/modules/http2/h2_session.c +++ b/modules/http2/h2_session.c @@ -1179,7 +1179,7 @@ struct h2_stream *h2_session_push(h2_session *session, h2_stream *is, stream = h2_session_open_stream(session, nid, is->id); if (!stream) { ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c, - H2_STRM_LOG(APLOGNO(03077), stream, + H2_STRM_LOG(APLOGNO(03077), is, "failed to create stream obj %d"), nid); /* kill the push_promise */ nghttp2_submit_rst_stream(session->ngh2, NGHTTP2_FLAG_NONE, nid, |