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
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 ]
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;
}