You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by ge...@apache.org on 2005/03/31 15:57:10 UTC

svn commit: r159588 - perl/modperl/trunk/lib/Apache2/Status.pm

Author: geoff
Date: Thu Mar 31 05:57:10 2005
New Revision: 159588

URL: http://svn.apache.org/viewcvs?view=rev&rev=159588
Log:
use Apache2->server->push_handlers [Dominique Quatravaux]

Modified:
    perl/modperl/trunk/lib/Apache2/Status.pm

Modified: perl/modperl/trunk/lib/Apache2/Status.pm
URL: http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache2/Status.pm?view=diff&r1=159587&r2=159588
==============================================================================
--- perl/modperl/trunk/lib/Apache2/Status.pm (original)
+++ perl/modperl/trunk/lib/Apache2/Status.pm Thu Mar 31 05:57:10 2005
@@ -668,7 +668,7 @@
 
 $Apache2::Status::BGraphCache ||= 0;
 if ($Apache2::Status::BGraphCache) {
-    Apache2->push_handlers(PerlChildExitHandler => sub {
+    Apache2->server->push_handlers(PerlChildExitHandler => sub {
         unlink keys %Apache2::Status::BGraphCache;
     });
 }