Re: svn commit: r1800835 - in /httpd/httpd/branches/2.4.x: ./ CHANGES modules/lua/README modules/lua/config.m4 modules/lua/lua_apr.c modules/lua/lua_config.c modules/lua/lua_request.c modules/lua/mod_

2017-07-05 Thread Rainer Jung
Hi Jacob, Am 05.07.2017 um 22:10 schrieb Jacob Champion: On 07/05/2017 12:30 PM, Jacob Champion wrote: So... do we care? If we do, here's a potential patch to *partially* return to the previous behavior: --- modules/lua/lua_apr.c +++ modules/lua/lua_apr.c @@ -97,6 +97,12 @@ int

Re: Test case intermittent failure?

2017-07-05 Thread Eric Covener
On Wed, Jul 5, 2017 at 5:02 PM, William A Rowe Jr wrote: > t/apache/expr_string.t(Wstat: 0 Tests: 23 Failed: 1) > Failed test: 14 > > # writing file: > /home/wrowe/dev/test/test2x-apr20-ossl110/t/htdocs/apache/expr/.htaccess > ok 12 > Expected return code 200,

Test case intermittent failure?

2017-07-05 Thread William A Rowe Jr
t/apache/expr_string.t(Wstat: 0 Tests: 23 Failed: 1) Failed test: 14 # writing file: /home/wrowe/dev/test/test2x-apr20-ossl110/t/htdocs/apache/expr/.htaccess ok 12 Expected return code 200, got 200 for '}' ok 13 Got '}', expected '}' ok 14 Any reason I should expect an

Re: svn commit: r1800835 - in /httpd/httpd/branches/2.4.x: ./ CHANGES modules/lua/README modules/lua/config.m4 modules/lua/lua_apr.c modules/lua/lua_config.c modules/lua/lua_request.c modules/lua/mod_

2017-07-05 Thread Jacob Champion
On 07/05/2017 12:30 PM, Jacob Champion wrote: So... do we care? If we do, here's a potential patch to *partially* return to the previous behavior: --- modules/lua/lua_apr.c +++ modules/lua/lua_apr.c @@ -97,6 +97,12 @@ int ap_lua_init(lua_State *L, apr_pool_t *p) lua_gettable(L, 2);

Re: perl test framework

2017-07-05 Thread Jim Jagielski
Ok... was just making sure it wasn't just me having issues with more modern Perls.

Re: svn commit: r1800835 - in /httpd/httpd/branches/2.4.x: ./ CHANGES modules/lua/README modules/lua/config.m4 modules/lua/lua_apr.c modules/lua/lua_config.c modules/lua/lua_request.c modules/lua/mod_

2017-07-05 Thread Jacob Champion
On 07/05/2017 11:19 AM, Jacob Champion wrote: So the effective change is that "apr_table" is no longer a global name, is that correct? Unfortunately, from poking around on GitHub, it looks like removing this global variable might break at least one production script [1]. Not because they're

Re: svn commit: r1800835 - in /httpd/httpd/branches/2.4.x: ./ CHANGES modules/lua/README modules/lua/config.m4 modules/lua/lua_apr.c modules/lua/lua_config.c modules/lua/lua_request.c modules/lua/mod_

2017-07-05 Thread Jacob Champion
On 07/04/2017 03:28 PM, rj...@apache.org wrote: The following lua 5.2 and 5.3 compat change should be checked for runtime correctness by someone more knowledgeable about lua. Index: modules/lua/lua_apr.c --- modules/lua/lua_apr.c (original) +++ modules/lua/lua_apr.c Tue Jul 4 20:48:43 2017 @@

Re: perl test framework

2017-07-05 Thread Eric Covener
On Wed, Jul 5, 2017 at 12:04 PM, Jacob Champion wrote: > 5.22.1, as distributed with Ubuntu 16.04 (plenty of Debian patches). Same here. For a release I usually run on my AIX systems 5.10.1 with some CPAN additions/upgrades to be able to get H2 to work. But, I think it has

Re: 2.4.27

2017-07-05 Thread Jim Jagielski
These are just the fixes/regressions noted in CHANGES: Changes with Apache 2.4.27 *) mod_lua: Improve compatibility with Lua 5.1, 5.2 and 5.3. PR58188, PR60831, PR61245. [Rainer Jung] *) mod_http2: disable and give warning when mpm_prefork is encountered. The server will

Re: perl test framework

2017-07-05 Thread Jacob Champion
On 07/05/2017 04:01 AM, Jim Jagielski wrote: I am curious... what versions of Perl are people using when running the Perl test framework? It seems that, at least to me, it is quite picky regarding versions, at least on macOS. 5.22.1, as distributed with Ubuntu 16.04 (plenty of Debian patches).

Re: 2.4.27

2017-07-05 Thread Jacob Champion
On 07/03/2017 04:45 AM, Eric Covener wrote: +1 +1 --Jacob

Re: FastCGI env-vars

2017-07-05 Thread Jacob Champion
On 07/02/2017 08:44 AM, William A Rowe Jr wrote: I'm reading https://tools.ietf.org/html/rfc3875#section-4.1.5 as the PATH_INFO is entirely distinct from QUERY_STRING. Right. SCRIPT_NAME, PATH_INFO, and QUERY_STRING are intended to be three distinct parts of the Script-URI (see Section 3.3).

Re: perl test framework

2017-07-05 Thread Jim Jagielski
> On Jul 5, 2017, at 8:39 AM, Rainer Jung wrote: > > Solaris: self-compiled 5.22.0 I have found that 5.20.x works best for me... I have also found that doing a universal CPAN update generally causes various framework tests to fail[1]; usually the 1st hint of troubles

Re: perl test framework

2017-07-05 Thread Rainer Jung
Am 05.07.2017 um 13:01 schrieb Jim Jagielski: I am curious... what versions of Perl are people using when running the Perl test framework? It seems that, at least to me, it is quite picky regarding versions, at least on macOS. Just my personal recipe: Solaris: self-compiled 5.22.0 Linux:

Re: [Bug 60956] Event MPM listener thread may get blocked by SSL shutdowns

2017-07-05 Thread Luca Toscano
Hi Yann and Ruediger, 2c from a mpm-event newbie inline: 2017-06-30 13:33 GMT+02:00 Yann Ylavic : > On Fri, Jun 30, 2017 at 1:20 PM, Ruediger Pluem wrote: > > > > On 06/30/2017 12:18 PM, Yann Ylavic wrote: > >> > >> IMHO mod_ssl shoudn't (BIO_)flush

perl test framework

2017-07-05 Thread Jim Jagielski
I am curious... what versions of Perl are people using when running the Perl test framework? It seems that, at least to me, it is quite picky regarding versions, at least on macOS.