Ryan, Tasks are repeated until they return a HTTP success code. So your task need to be indepotent in that if they should still do the right thing (not write things twice etc.) if your task gets run more than once because of failure.
So if one task in the chain has an error, then that task will be run again and can complete the chain. You just have to make sure that if it runs twice, it can continue processing where it left off. Ian On Thu, Jun 10, 2010 at 12:45 PM, Ryan <[email protected]> wrote: > I have a task I want to perform over and over. If I chain tasks in > the task queue, how can I make sure that the chain wont be broken by > some error? > > Thanks for any help! > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" 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/google-appengine?hl=en. > > -- ======================================= 株式会社ビープラウド イアン・ルイス 〒150-0021 東京都渋谷区恵比寿西2-3-2 NSビル6階 email: [email protected] TEL:03-6416-9836 FAX:03-6416-9837 http://www.beproud.jp/ ======================================= -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en.
