From: Ruediger Pluem Date: Tue, 14 Sep 2021 08:58:55 +0000 (+0000) Subject: * Log the correct timeout X-Git-Tag: 2.5.0-alpha2-ci-test-only~809 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=60114224ffaa58dd0bc9941937b4e1eb0fc03544;p=thirdparty%2Fapache%2Fhttpd.git * Log the correct timeout git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893333 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_session.c b/modules/http2/h2_session.c index 3284aa2ff64..dc883b5b96f 100644 --- a/modules/http2/h2_session.c +++ b/modules/http2/h2_session.c @@ -1717,8 +1717,8 @@ static void transit(h2_session *session, const char *action, h2_session_state ns timeout = session->s->timeout; update_child_status(session, SERVER_BUSY_READ, "idle"); ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, session->c, - H2_SSSN_LOG("", session, "enter idle, timeout = %d sec"), - (int)apr_time_sec(H2MAX(session->s->timeout, session->s->keep_alive_timeout))); + H2_SSSN_LOG("", session, "enter idle, timeout = %d sec"), + (int)apr_time_sec(timeout)); } else if (session->open_streams) { s = "timeout";