trunk works
+1 covener, niq, rpluem
- * mod_proxy_http: Add server_rec to ap_log_error() calls for interim
- response messages
- trunk
- http://svn.apache.org/viewvc?rev=733127&view=rev
- http://svn.apache.org/viewvc?rev=733219&view=rev
- 2.2.x:
- trunk works
- +1: covener, niq, rpluem
-
* util_script (CGI): return 504 (Gateway timeout) rather than 500
when a script times out before returning status line/headers.
PR 42190
*/
const char *policy = apr_table_get(r->subprocess_env,
"proxy-interim-response");
- ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, NULL,
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
"proxy: HTTP: received interim %d response",
r->status);
if (!policy || !strcasecmp(policy, "RFC")) {
* policies and maybe also add option to bail out with 502
*/
else if (strcasecmp(policy, "Suppress")) {
- ap_log_error(APLOG_MARK, APLOG_WARNING, 0, NULL,
+ ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r,
"undefined proxy interim response policy");
}
}