]> granicus.if.org Git - apache/commitdiff
Merge r1745039 from trunk:
authorYann Ylavic <ylavic@apache.org>
Fri, 8 Sep 2017 14:53:47 +0000 (14:53 +0000)
committerYann Ylavic <ylavic@apache.org>
Fri, 8 Sep 2017 14:53:47 +0000 (14:53 +0000)
include the scheme in the error message about missing a
mod_proxy_submodule (mod_proxy_$usually_a_scheme)

Submitted by: covener
Reviewed by: jim, ylavic, icing

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1807773 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/proxy/mod_proxy.c

diff --git a/STATUS b/STATUS
index c74589e7083a8bf1ef9d09404c9c24419ed2fa0d..45a26e21d39e469ba84f485d404967cbc19eeaf3 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -119,12 +119,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
      2.4.x patch: svn merge -c 1801594 ^/httpd/httpd/trunk .
      +1: jfclere, jim, covener
 
-  *) mod_proxy: Name the scheme in the error message when the 
-     mod_proxy_foo submodule is missing.
-     trunk patch: http://svn.apache.org/r1745039 
-     2.4.x patch svn merge -c 1745039 ^/httpd/httpd/trunk .
-     +1: jim, ylavic, icing
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 9f5a3ae2792e2df7789f0ffa1ca87210d84234e2..3f916f66dfc5780427b172726705cc74edb0cf9b 100644 (file)
@@ -1268,10 +1268,11 @@ static int proxy_handler(request_rec *r)
 
     if (DECLINED == access_status) {
         ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01144)
-                      "No protocol handler was valid for the URL %s. "
+                      "No protocol handler was valid for the URL %s " 
+                      "(scheme '%s'). "
                       "If you are using a DSO version of mod_proxy, make sure "
                       "the proxy submodules are included in the configuration "
-                      "using LoadModule.", r->uri);
+                      "using LoadModule.", r->uri, scheme);
         access_status = HTTP_INTERNAL_SERVER_ERROR;
         goto cleanup;
     }