[EMAIL PROTECTED] wrote: > Hello > > I have recently upgraded to 0.10.4dev, and configured the mysql > backend, running on DreamHost. Everything is working well, except that > changes in the subversion repository (svn version 1.3.2) are not > automatically being picked up by Trac. I can manually resync fine. > > Any suggestions on how to get automatic sync'ing with repository? >
It's supposed to work... what Trac revision number are you using, exactly? (should be >= r5163) If you were using an older revision, before the forced database schema version upgrade, it could happen that when upgrading a running environment (e.g. using the mod_python front end), both the 0.10.3 and 0.10.4 code base were active at the same time, in different server processes. This resulted in two different and incompatible repository sync cache mechanisms being active at the same time, resulting in the 0.10.4 based requests to be "stuck" on some old revision. The database version bump has been done in order to prevent this to happen. To fix your situation, make sure you have the latest 0.10.4dev code, stop your server, do an upgrade, a resync (or, if that's very costly, simply do at the SQL level a " update system set value = '' where name = 'youngest_rev' "), and restart your server. -- Christian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" 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-users?hl=en -~----------~----~----~----~------~----~------~--~---
