Author: sf
Date: Wed Oct 7 05:14:05 2009
New Revision: 822589
URL: http://svn.apache.org/viewvc?rev=822589&view=rev
Log:
Don't log a warning on APR_ECONNABORTED which is returned if the client aborted
the connection.
Modified:
httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c
Modified: httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c?rev=822589&r1=822588&r2=822589&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c (original)
+++ httpd/mod_fcgid/trunk/modules/fcgid/fcgid_bridge.c Wed Oct 7 05:14:05 2009
@@ -426,8 +426,10 @@
ap_pass_brigade(r->output_filters,
brigade_stdout)) !=
APR_SUCCESS) {
- ap_log_rerror(APLOG_MARK, APLOG_WARNING, rv, r,
- "mod_fcgid: ap_pass_brigade failed in handle_request function");
+ if (rv != APR_ECONNABORTED) {
+ ap_log_rerror(APLOG_MARK, APLOG_WARNING, rv, r,
+ "mod_fcgid: ap_pass_brigade failed in handle_request function");
+ }
return HTTP_INTERNAL_SERVER_ERROR;
}
|