in reply to Re: mod_perl input filter error ( Can't locate object method "pool" via package "Apache2::Filter" )
in thread mod_perl input filter error

Thanks Anonymous Monk. Challenge is that the doc at https://perl.apache.org/docs/2.0/api/Apache2/RequestRec.html#C_pool_ shows that $r->pool should work, but it doesn't... hence the error message I'm getting.

  • Comment on Re^2: mod_perl input filter error ( Can't locate object method "pool" via package "Apache2::Filter" )

Replies are listed 'Best First'.
Re^3: mod_perl input filter error ( Can't locate object method "pool" via package "Apache2::Filter" )
by Anonymous Monk on Jun 19, 2016 at 23:47 UTC

    What does that have to do with Apache2::Filter?

    Apache2::Filter isn't a Apache2::RequestRec, the error says Apache2::Filter doesn't have a pool, $r is "Apache2::Filter", $r is not "Apache2::RequestRec" or ...

      Correct, thanks for spotting that. See my later response where I correct that issue but uncover another :(