DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=43167>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=43167 Summary: Adding status=i|I (Ignore Errors) option for ProxyPassReverse Product: Apache httpd-2 Version: 2.2.4 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: mod_proxy AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] Hello, I have made a tiny patch for allowing marking a ProxyPass entry as WORKER_IGNORE_ERRORS. That will allow not to disable the requests to the server if it makes a Timeout or single error. --- diff -ur apache2-2.2.4.orig/modules/proxy/mod_proxy.c apache2-2.2.4.kikov1/modules/proxy/mod_proxy.c --- apache2-2.2.4.orig/modules/proxy/mod_proxy.c 2006-11-27 16:00:56.000000000 +0100 +++ apache2-2.2.4.kikov1/modules/proxy/mod_proxy.c 2007-08-20 15:17:46.000000000 +0200 @@ -219,6 +219,12 @@ else worker->status &= ~PROXY_WORKER_HOT_STANDBY; } + else if (*v == 'I' || *v == 'i') { + if (mode) + worker->status |= PROXY_WORKER_IGNORE_ERRORS; + else + worker->status &= ~PROXY_WORKER_IGNORE_ERRORS; + } else { return "Unknown status parameter option"; } --- I have found people looking for this: http://www.mail-archive.com/[EMAIL PROTECTED]/msg36492.html -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
