On Tue, 2004-05-18 at 13:27, Ruslan U. Zakirov wrote:
First time I thought that A::DP has limit on depth for tree, but as you can see RT::Ticket::HasUnresolvedDependencies calls directly only:
RT::Ticket::UnresolvedDependencies
RT::Tickets::IgnoreType
but they are unreported.
The problem is most likely that you are compiling that code before you initialize the debugger. See the note about this in the Apache::DB docs. You have to call Apache::DB->init before you pull in any modules you want to profile.
Yuh, it's working correct now when add next perl section to my apache.conf .
<Perl> use Apache::DB (); Apache::DB->init; </Perl>
PerlModule Apache::DProf
Listen 192.168.7.144:8000 <VirtualHost 192.168.7.144:8000> ..... PerlRequire /opt/rt3/bin/webmux.pl ....
But I expect normal behavior without it. A::DP pod doesn't note something special about DB init and also as you can see A::DP is loaded with PerlModule before script.
Best regards. Ruslan.
- Perrin
.
-- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html