[google-appengine] What happens to still pending async operations when the request completes (in Python)?

2011-07-14 Thread Pol
Hi, I was wondering, if you start an async urlfetch (or even an async db operation) but don't wait for it to complete before returning from the handler, what happens? Is the async operation cancelled mid-course or does it complete normally, except no callback is called to indicate success or failu

Re: [google-appengine] What happens to still pending async operations when the request completes (in Python)?

2011-07-14 Thread Jeff Schnitzer
Even though your code returns, the request itself does not return until all pending async requests complete (or timeout). Jeff On Thu, Jul 14, 2011 at 5:14 PM, Pol wrote: > Hi, > > I was wondering, if you start an async urlfetch (or even an async db > operation) but don't wait for it to complet