>>I'll give that a go and see. Is the following also kosher, then? >> >> $r->push_handlers( >> PerlCleanupHandler => MyApp::MyInstall::Cleaner->handler >> ); > > > sorry, no - you can't currently push a method handler like that. see the > > * method handler cached-CVs > > entry in the STATUS file that ships with mod_perl-1.0 for some relevant links.
and for those that don't go and read the links, while the above form isn't valid you should be able to use this instead. $r->push_handlers( PerlCleanupHandler => 'MyApp::MyInstall::Cleaner->handler' ); (note the quotes) --Geoff