From: Stefan Eissing Date: Tue, 22 Dec 2015 16:20:48 +0000 (+0000) Subject: reduced logging for MPM async query not implemented, normal under 2.4.x X-Git-Tag: 2.5.0-alpha~2503 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f191edd12273988696283f85ebfae8f6a97922b9;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/http2/h2_conn.c b/modules/http2/h2_conn.c index 2c8e1e80dd8..f7048602143 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);