Tickets are stored differently on normal server and GAE, and I want a solution that works on both. Is there a function that returns the current tickets?
On Tue, Apr 19, 2011 at 2:12 AM, Jonathan Lundell <[email protected]>wrote: > On Apr 18, 2011, at 8:54 AM, Richard Baron Penman wrote: > > cool, that is what I was thinking too. > > > There's no need to do this. RSS feeds are typically generated on demand. > Just create a function that responds to rss requests > (app/default/tickets.rss, maybe) that creates the feed from the current > ticket store. > > > > On Tue, Apr 19, 2011 at 1:48 AM, Massimo Di Pierro < > [email protected]> wrote: > >> On GAE tickets are stored on database. >> >> you could use routes_onerror to call an action that publishes the >> latest error on an RSS feed. >> >> On Apr 18, 9:50 am, Plumo <[email protected]> wrote: >> > I want to be notified via RSS whenever my app produces an error ticket. >> > Would prefer a solution that works on GAE too, where tickets are not >> stored >> > on file system. >> > >> > What do you suggest? Use routes_onerror to log the error? >> > > > >

