Mailing List Archive

[Bug 65987] Infinite Loading Issue
https://bz.apache.org/bugzilla/show_bug.cgi?id=65987

Daniel <dstewart@vai.net> changed:

What |Removed |Added
----------------------------------------------------------------------------
OS| |All

--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
[Bug 65987] Infinite Loading Issue [ In reply to ]
https://bz.apache.org/bugzilla/show_bug.cgi?id=65987

--- Comment #1 from Ruediger Pluem <rpluem@apache.org> ---
This is likely related to 2 things:

1. The websocket implementation of mod_proxy_http that is used by default
unless you set ProxyWebsocketFallbackToProxyHttp to off uses a timeout on idle
websockets. If the timeout is expired the websocket is closed. You can modify
this timeout either by ProxyTimeout or a worker specific timeout parameter.
2. There was a change in the implementation that by default sockets are only
half closed to the front end if the backend only half closes the connection,
meaning if the backend closes only the writing side of its socket httpd will
only close the writing side of its socket to the client as well. You can revert
to the previous behaviour of closing the complete socket in these cases by
setting the environment variable proxy-nohalfclose. Unfortunately this
environment variable is not documented yet. Hence your report is at least a
documentation bug.

The above only works with with version 2.4.53.

--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
[Bug 65987] Infinite Loading Issue [ In reply to ]
https://bz.apache.org/bugzilla/show_bug.cgi?id=65987

--- Comment #2 from Daniel <dstewart@vai.net> ---
We've tried using the suggested parameters. Unfortunately, no change.

--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org