You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Steffen <in...@apachelounge.com> on 2011/11/22 12:06:38 UTC

Win 2.3.15 :: New log entries

Other log entries which I did not see in 2.2 with loglevel notice.


[:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was forcibly 
closed by the remote host.  : [client 220.134.192.77:42107] mod_fcgid: 
ap_pass_brigade failed in handle_request_ipc function, referer: .......

[core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107] Handler for 
type-map returned invalid result code 620018, referer: .....




Re: Win 2.3.15 :: New log entries

Posted by Eric Covener <co...@gmail.com>.
On Tue, Nov 22, 2011 at 4:42 PM, Stefan Fritsch <sf...@sfritsch.de> wrote:
> Hi Steffen,
>
> thanks for your testing and your feed-back.
>
> On Tuesday 22 November 2011, Steffen wrote:
>> Other log entries which I did not see in 2.2 with loglevel notice.
>>
>>
>> [:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was
>> forcibly closed by the remote host.  : [client
>> 220.134.192.77:42107] mod_fcgid: ap_pass_brigade failed in
>> handle_request_ipc function, referer: .......
>
> It is possible that we did not propagate that error back to the
> handler. But this needs to be adjusted in mod_fcgid.
>
>> [core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107]
>> Handler for type-map returned invalid result code 620018, referer:
>> .....
>
> This message denotes that there is a bug in the handler (maybe in
> mod_negotiation). The log message itself is new, the bug probably
> isn't. Can somebody find out what 620018 is on Windows?

APR_ECONNABORTED  --  mod_negotiation has a 'return
ap_pass_brigade()...' in a handler.

-- 
Eric Covener
covener@gmail.com

Re: Win 2.3.16 :: New log entries

Posted by Eric Covener <co...@gmail.com>.
On Mon, Jan 2, 2012 at 9:21 AM, Steffen <in...@apachelounge.com> wrote:
>> This message denotes that there is a bug in the handler (maybe in
>> mod_negotiation). The log message itself is new, the bug probably isn't. Can
>> somebody find out what 620018 is on Windows?
>
> Any news on this bug ?
>

mod_negotiation issue was resolved.

mod_fcgid is unchanged.  Without regard for 2.2 vs 2.4, handlers treat
this many different ways:

default_handler: DEBUG message if !c->aborted
proxy_http: ERR message all the time
fcgid: WARN message if !ECONNABORTED (but we have ECONNRESET)

I am tempted to copy the style of default handler in fcgid.  Any thoughts?

Re: Win 2.3.16 :: New log entries

Posted by Steffen <in...@apachelounge.com>.
>This message denotes that there is a bug in the handler (maybe in 
>mod_negotiation). The log message itself is new, the bug probably 
>isn't. Can somebody find out what 620018 is on Windows?

Any news on this bug ?

-----Original Message----- 
From: Stefan Fritsch 
Sent: Tuesday, November 22, 2011 10:42 PM 
To: dev@httpd.apache.org 
Cc: Steffen 
Subject: Re: Win 2.3.15 :: New log entries 

Hi Steffen,

thanks for your testing and your feed-back.

On Tuesday 22 November 2011, Steffen wrote:
> Other log entries which I did not see in 2.2 with loglevel notice.
> 
> 
> [:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was
> forcibly closed by the remote host.  : [client
> 220.134.192.77:42107] mod_fcgid: ap_pass_brigade failed in
> handle_request_ipc function, referer: .......

It is possible that we did not propagate that error back to the 
handler. But this needs to be adjusted in mod_fcgid.

> [core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107]
> Handler for type-map returned invalid result code 620018, referer:
> .....

This message denotes that there is a bug in the handler (maybe in 
mod_negotiation). The log message itself is new, the bug probably 
isn't. Can somebody find out what 620018 is on Windows?

Cheers,
Stefan

Re: Win 2.3.15 :: New log entries

Posted by Rainer Jung <ra...@kippdata.de>.
On 22.11.2011 22:42, Stefan Fritsch wrote:
>> [core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107]
>> Handler for type-map returned invalid result code 620018, referer:
>> .....
>
> This message denotes that there is a bug in the handler (maybe in
> mod_negotiation). The log message itself is new, the bug probably
> isn't. Can somebody find out what 620018 is on Windows?

IMHO:

#define APR_ECONNABORTED   (APR_OS_START_CANONERR + 18)

Does that make sense?

Regards,

Rainer


Re: Win 2.3.15 :: New log entries

Posted by Stefan Fritsch <sf...@sfritsch.de>.
Hi Steffen,

thanks for your testing and your feed-back.

On Tuesday 22 November 2011, Steffen wrote:
> Other log entries which I did not see in 2.2 with loglevel notice.
> 
> 
> [:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was
> forcibly closed by the remote host.  : [client
> 220.134.192.77:42107] mod_fcgid: ap_pass_brigade failed in
> handle_request_ipc function, referer: .......

It is possible that we did not propagate that error back to the 
handler. But this needs to be adjusted in mod_fcgid.

> [core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107]
> Handler for type-map returned invalid result code 620018, referer:
> .....

This message denotes that there is a bug in the handler (maybe in 
mod_negotiation). The log message itself is new, the bug probably 
isn't. Can somebody find out what 620018 is on Windows?

Cheers,
Stefan

Re: Win 2.3.15 :: New log entries

Posted by Eric Covener <co...@gmail.com>.
>> [:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was forcibly
>> closed by the remote host.  : [client 220.134.192.77:42107] mod_fcgid:
>> ap_pass_brigade failed in handle_request_ipc function, referer: .......
>
> fcgid is supressing this error message if the error is ECONNABORTED
> but we get ECONNRESET here.
>

Just change to debug?

Re: Win 2.3.15 :: New log entries

Posted by Eric Covener <co...@gmail.com>.
On Tue, Nov 22, 2011 at 6:06 AM, Steffen <in...@apachelounge.com> wrote:
> Other log entries which I did not see in 2.2 with loglevel notice.
>
>
> [:warn] [pid 3800:tid 2216] (OS 10054)An existing connection was forcibly
> closed by the remote host.  : [client 220.134.192.77:42107] mod_fcgid:
> ap_pass_brigade failed in handle_request_ipc function, referer: .......

fcgid is supressing this error message if the error is ECONNABORTED
but we get ECONNRESET here.

>
> [core:error] [pid 3800:tid 2216] [client 220.134.192.77:42107] Handler for
> type-map returned invalid result code 620018, referer: .....

This one should now be gone in current 2.4.x/trunk.