[email protected] wrote: > i am not enough python developer to judge this, but it looks so much > overload that on every click we have 160 lines caused by plugins in > our log file. is this really necessary?
Well, assuming you're using latest Trac 0.11, I'd say one of these plugins is doing a "config.touch()" at every request, which triggers the reload of the whole environment at the next request. Either grep the plugins sources for the above pattern, or identify the faulty plugin by re-enabling them one by one, starting with an environment with no plugins enabled. I'm pretty sure that you won't get this problematic behavior at first, unless you're using an old version of Trac which had such an issue (pre-0.11, see r6893). Then you'd want to fix your "r0" problems for some plugins, due to setuptools and svn 1.6, see the Notes in http://trac.edgewall.org/wiki/setuptools -- Christian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---
