You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/12/22 17:20:49 UTC

svn commit: r1721421 - /httpd/httpd/trunk/modules/http2/h2_conn.c

Author: icing
Date: Tue Dec 22 16:20:48 2015
New Revision: 1721421

URL: http://svn.apache.org/viewvc?rev=1721421&view=rev
Log:
reduced logging for MPM async query not implemented, normal under 2.4.x

Modified:
    httpd/httpd/trunk/modules/http2/h2_conn.c

Modified: httpd/httpd/trunk/modules/http2/h2_conn.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_conn.c?rev=1721421&r1=1721420&r2=1721421&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_conn.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_conn.c Tue Dec 22 16:20:48 2015
@@ -88,8 +88,10 @@ apr_status_t h2_conn_child_init(apr_pool
     
     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);