https://issues.apache.org/bugzilla/show_bug.cgi?id=45986
Summary: [info]...Invalid argument: core_output_filter: writing
data to the network
Product: Apache httpd-2
Version: 2.0.63
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Core
AssignedTo: [email protected]
ReportedBy: [EMAIL PROTECTED]
Hello,
today, I was debugging a CGI application, which after logging in, writes
some HTML data to the document root and redirects the client to it.
But the redirection was not successful, the request was answered with a
closed connection. The entire response was missing.
Since this runs on a clustered environment (DocumentRoot is shared over
NFS), I thought this was an NFS problem, because I could receive the
content on the second server. Long story short, I was off the track.
After I set the LogLevel to debug the following message appeared in the
ErrorLog:
[info] [client 160.xx.xx.xx] (22)Invalid argument: core_output_filter:
writing data to the network
I grepped the httpd source for this message to get an idea what's going
on here and found the FAQ entry. EnableSendfile Off, everything is fine
now.
But I really think that this should be at least an error instead of an
info. httpd was not able to send the response, this is worse than "file
not found" which is logged as an error.
Here is the patch:
--- server/core.c.orig 2006-07-12 09:40:55.000000000 +0200
+++ server/core.c 2008-10-10 17:21:36.000000000 +0200
@@ -4327,7 +4327,7 @@
}
if (rv != APR_SUCCESS) {
- ap_log_cerror(APLOG_MARK, APLOG_INFO, rv, c,
+ ap_log_cerror(APLOG_MARK, APLOG_ERR, rv, c,
"core_output_filter: writing data to the network");
if (more)
Regards,
Danijel
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]