[Rt-commit] r17044 - in rt/3.8/trunk: .
jesse at bestpractical.com
jesse at bestpractical.com
Fri Nov 28 11:58:35 EST 2008
Author: jesse
Date: Fri Nov 28 11:58:34 2008
New Revision: 17044
Modified:
rt/3.8/trunk/ (props changed)
rt/3.8/trunk/lib/RT/Util.pm
Log:
r53528 at 99-207-182-91: jesse | 2008-11-28 11:58:04 -0500
* Don't do the safe ipc hack for fastcgi if we're running with SpeedyCGI.
Niko Tyni <ntyni+rt-users at mappi.helsinki.fi> - <20081126124634.GA4523 at rebekka>
Modified: rt/3.8/trunk/lib/RT/Util.pm
==============================================================================
--- rt/3.8/trunk/lib/RT/Util.pm (original)
+++ rt/3.8/trunk/lib/RT/Util.pm Fri Nov 28 11:58:34 2008
@@ -56,7 +56,7 @@
sub safe_run_child (&) {
local @ENV{ 'LANG', 'LC_ALL' } = ( 'C', 'C' );
- return shift->() if $ENV{'MOD_PERL'};
+ return shift->() if $ENV{'MOD_PERL'} || $CGI::SpeedyCGI::i_am_speedy;
# We need to reopen stdout temporarily, because in FCGI
# environment, stdout is tied to FCGI::Stream, and the child
More information about the Rt-commit
mailing list