On Fri, Jun 4, 2010 at 7:32 PM, Joel Dietz <[email protected]> wrote: > I built a test suite for my robot (Resourcy) to capture problems like this. > Essentially it runs all of the actions needed by my robot at periodic > intervals set by a cron job. > > Unfortunately, the App Engine times out after what I believe is an > undocumented number of seconds (I believe somewhere between 10 and 30), > which has never been enough for my tests to run.
The limit is 30 seconds: http://code.google.com/appengine/docs/python/runtime.html#The_Request_Timer You could break the tests up into individual actions and then put the actions into a task queue and schedule them to be run: http://code.google.com/appengine/docs/python/taskqueue/ Thanks, -joe -- Joe Gregorio Developer Relations, Google Wave > > I'd love to release this code somewhere so that we can get a better idea of > what is working when, esp. when folks start deploying robots across wave > servers. > > Jd > > d3developer.com | twitter.com/fractastical | twitter.com/jdietz > > > On Wed, Jun 2, 2010 at 4:29 AM, pamela (Google Employee) > <[email protected]> wrote: >> >> It's hard to debug other folk's robots, but it should be possible to debug >> yours further. >> Does your robot still receive events, when you look in the App Engine >> logs? >> Generally, no, we haven't done anything recently that would take down all >> robots. >> >> On Thu, May 27, 2010 at 3:34 AM, ERichardson <[email protected]> >> wrote: >>> >>> Maybe I didn't make myself clear: >>> After I saw that my robot stopped working I checked other robots that >>> I didn't write like [email protected] and [email protected] >>> but they also didn't work. >>> Some more information: >>> My web browser is Google Chrome. >>> My robot ID is titlemylink(@appspot.com) - it's supposed to replace >>> links with the website's title. >>> It didn't stop working when I updated it - it's just stopped all of a >>> sudden after working like it's supposed to. >>> >>> On May 25, 8:45 pm, David Byttow <[email protected]> wrote: >>> > Hi Elad, >>> > >>> > Can you provide a little bit more information? >>> > >>> > - What is your robot id? >>> > - Which client library and version are you using? >>> > - Are you seeing exceptions/errors on your end? >>> > >>> > Thanks. >>> > David >>> > >>> > On Tue, May 25, 2010 at 8:20 AM, ERichardson >>> > <[email protected]>wrote: >>> > >>> > > For some reason in the past few weeks all of the robots I made, and >>> > > other robots I'm using, just stopped working. >>> > > Does it happen just to me? did I miss any important announcement? >>> > >>> > > Thanks, >>> > > Elad >>> > >>> > > -- >>> > > You received this message because you are subscribed to the Google >>> > > Groups >>> > > "Google Wave API" group. >>> > > To post to this group, send email to >>> > > [email protected]. >>> > > To unsubscribe from this group, send email to >>> > > >>> > > [email protected]<google-wave-api%2Bunsubscribe@ >>> > > googlegroups.com> >>> > > . >>> > > For more options, visit this group at >>> > >http://groups.google.com/group/google-wave-api?hl=en. >>> > >>> > -- >>> > You received this message because you are subscribed to the Google >>> > Groups "Google Wave API" 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 >>> > athttp://groups.google.com/group/google-wave-api?hl=en. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups >>> "Google Wave API" 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-wave-api?hl=en. >>> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Google Wave API" 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-wave-api?hl=en. > > -- > You received this message because you are subscribed to the Google Groups > "Google Wave API" 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-wave-api?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Wave API" 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-wave-api?hl=en.
