On Fri, Oct 25, 2013 at 2:15 PM, Kaan Soral <[email protected]> wrote:

> However, are the following logs caused by the sdk, or is there an infinite
> recursion bug in my code that I'm now aware of?
>
> WARNING  2013-10-25 18:58:28,660 tasklets.py:409] suspended generator
> _get_tasklet(context.py:266) raised RuntimeError(maximum recursion depth
> exceeded while calling a Python object)
>


Are you mixing async calls with synchronous calls in your tasklet? You need
to change all the calls into async (or use *yield [async call here]*).
Otherwise, the sync call goes too deep in recursion and gets shut down.


-----------------
-Vinny P
Technology & Media Advisor
Chicago, IL

App Engine Code Samples: http://www.learntogoogleit.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to