diff options
author | Stefan Eissing <icing@apache.org> | 2015-12-22 17:20:48 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2015-12-22 17:20:48 +0100 |
commit | f191edd12273988696283f85ebfae8f6a97922b9 (patch) | |
tree | 33be4b0747c52b6205a78356f3da1d6bf4a6c346 /modules/http2/h2_conn.c | |
parent | rewrote http2 connection state handling, fixed keepalive timeout handling for... (diff) | |
download | apache2-f191edd12273988696283f85ebfae8f6a97922b9.tar.xz apache2-f191edd12273988696283f85ebfae8f6a97922b9.zip |
reduced logging for MPM async query not implemented, normal under 2.4.x
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1721421 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/http2/h2_conn.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/http2/h2_conn.c b/modules/http2/h2_conn.c index 2c8e1e80dd..f704860214 100644 --- a/modules/http2/h2_conn.c +++ b/modules/http2/h2_conn.c @@ -88,8 +88,10 @@ apr_status_t h2_conn_child_init(apr_pool_t *pool, server_rec *s) status = ap_mpm_query(AP_MPMQ_IS_ASYNC, &async_mpm); if (status != APR_SUCCESS) { - ap_log_error(APLOG_MARK, APLOG_ERR, status, s, "querying MPM for async"); + ap_log_error(APLOG_MARK, APLOG_TRACE1, status, s, "querying MPM for async"); + /* some MPMs do not implemnent this */ async_mpm = 0; + status = APR_SUCCESS; } h2_config_init(pool); |