From 60114224ffaa58dd0bc9941937b4e1eb0fc03544 Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Tue, 14 Sep 2021 08:58:55 +0000 Subject: [PATCH] * Log the correct timeout git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1893333 13f79535-47bb-0310-9956-ffa450edef68 --- modules/http2/h2_session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; -- 2.47.3