Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Jan Kaluža
On 07/15/2014 07:20 PM, Jim Jagielski wrote: The pre-release test tarballs for Apache httpd 2.4.10 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.10 GA. [ ] +1: Good to go [ ] +0: meh [ ] -1: Danger Will

Re: Apache2 crashes with segmentation fault

2014-07-17 Thread Elhadi Falah
Hello, I use mod_wsgi to run processes and not mod_python. WSGIDaemonProcess p1 threads=25 python-path=/opt/appengine/google_appengine:/opt/appengine/google_appengine/lib/django:/opt/appengine/google_appengine/lib/webob:/opt/appengine/google_appengine/lib/yaml/lib WSGIProcessGroup p1

Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Noel Butler
On 16/07/2014 03:20, Jim Jagielski wrote: The pre-release test tarballs for Apache httpd 2.4.10 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.10 GA. [ ] +1: Good to go [ ] +0: meh [ ] -1: Danger Will

Re: Apache2 crashes with segmentation fault

2014-07-17 Thread Graham Dumpleton
Since you don't say what version of mod_wsgi you are using, or what version of Apache, then the only other thing I can suggest right now is to ensure that you are using the latest mod_wsgi version. The latest version of mod_wsgi is version 4.2.6. Pretty well all Linux distributions are still

Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Jim Jagielski
And +1 on FreeBSD9 and FreeBSD10 (no regressions) FreeBSD freebsd9.localdomain 9.2-RELEASE-p10 FreeBSD 9.2-RELEASE-p10 #0: Tue Jul 8 10:48:24 UTC 2014 r...@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD freebsd10.localdomain 10.0-RELEASE-p7 FreeBSD

Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Steve Zweep
Hi I am prototyping a system in which we will have a large number of websocket connections between multiple clients and a server (potentially) behind mod_proxy_wstunnel. Currently I am testing a trunk build with the event mpm. With ProxyWebsocketAsync turned off, communication between client

Re: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Eric Covener
On Thu, Jul 17, 2014 at 2:09 PM, Steve Zweep steve.zw...@watchguard.com wrote: 1. While communication from client to server works well, unsolicited messages from the server to clients seem to queue. If the client subsequently sends a message back to the server, the original message from

RE: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Steve Zweep
Thanks Eric. BTW, the test setup I have is fairly simple. The websocket server just echoes received messages from any client to all connected clients. I just connect 2 clients and send a message to the server from one. A tcpdump shows the correct packets are sent by the server. - Steve

Re: svn commit: r1611252 - /httpd/httpd/trunk/include/util_varbuf.h

2014-07-17 Thread Mike Rumph
A few comments on typos below: On 7/16/2014 10:34 PM, jaillet...@apache.org wrote: Improve layout, add trailing '.' in function description, capitalize first letter of description, fix typo, turn \0 into \\0. Move the detailled description after @defgroup so that it is taken into account.

Re: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Jim Jagielski
If we could figure out someway to get the test framework to handle tests for websockets, that would be great. My tests use both node.js and python with simple ws servers, and it's been hard trying to figure out how to add that kind of stuff to the framework. :/ On Jul 17, 2014, at 2:54 PM, Steve

Re: svn commit: r1611252 - /httpd/httpd/trunk/include/util_varbuf.h

2014-07-17 Thread Marion Christophe JAILLET
Thanks Mike, Both have been fixed. CJ Le 17/07/2014 21:50, Mike Rumph a écrit : A few comments on typos below: On 7/16/2014 10:34 PM, jaillet...@apache.org wrote: Improve layout, add trailing '.' in function description, capitalize first letter of description, fix typo, turn \0 into \\0.

SuexecUserGroup inside Directory context

2014-07-17 Thread Martynas Bendorius
Hello, The following question hasn’t been answered in the dev list, so I’m trying to ask it again here: http://mail-archives.apache.org/mod_mbox/httpd-dev/201205.mbox/%3cca+-xxsfms0yrmzzitl0x-sgvgzbvxfzvrt57hh163dabrz_...@mail.gmail.com%3E :) Would it be secure to use SuexecUserGroup inside

RE: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Houser, Rick
It's a bit heavy, but perhaps use PhantomJS as a non-default test? Rick Houser Web Administration (517)367-3516 -Original Message- From: Jim Jagielski [mailto:j...@jagunet.com] Sent: Thursday, July 17, 2014 5:30 PM To: dev@httpd.apache.org Subject: Re: Question about async

Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Jeff Trawick
On Tue, Jul 15, 2014 at 1:20 PM, Jim Jagielski j...@jagunet.com wrote: The pre-release test tarballs for Apache httpd 2.4.10 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.10 GA. [ ] +1: Good to go [ ]

Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Guenter Knauf
On 15.07.2014 19:20, Jim Jagielski wrote: The pre-release test tarballs for Apache httpd 2.4.10 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.10 GA. [ ] +1: Good to go [ ] +0: meh [ ] -1: Danger Will

Re: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Eric Covener
I am having trouble seeing it mis-behave. w/ Async and AsyncDelay, I am seeing the expected trace messages and when I look at backtraces of httpd I can see zero threads in wstunnel . If I send a server msg, I get it ASAP in the client -- and then I see 1 thread in poll for the right couple of

RE: Question about async mod_proxy_wstunnel and threads

2014-07-17 Thread Steve Zweep
OK, I'll have a go at that tomorrow. I should note that it doesn't *always* fail for me. However I haven't yet been able to predict when it will work and when it won't. I did run it earlier with trace7 logging and basically saw no messages for the connections that were stalling. The trunk code

Re: [VOTE] Release Apache httpd 2.4.10 as GA

2014-07-17 Thread Gregg Smith
On 7/15/2014 10:20 AM, Jim Jagielski wrote: The pre-release test tarballs for Apache httpd 2.4.10 can be found at the usual place: http://httpd.apache.org/dev/dist/ I'm calling a VOTE on releasing these as Apache httpd 2.4.10 GA. [ ] +1: Good to go [ ] +0: meh [ ] -1: Danger Will