From f21415d6d80da20278d1c0d5ee8a26a61126b410 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Sun, 22 May 2016 13:11:11 +0000 Subject: [PATCH] include the scheme in the error message about missing a mod_proxy_submodule (mod_proxy_$usually_a_scheme) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1745039 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/mod_proxy.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 6c966d84a8..7a3bad9266 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -1258,10 +1258,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; } -- 2.40.0