views:

221

answers:

1

Google App Engine imposes a 30 seconds timeout for every request. Is this applicable when uploading to the blobstore?

Thanks!

+2  A: 

No. Even with regular requests to your app, the 30 second limit only applies to time your application spends processing requests. The timer does not include time the server takes to receive the request nor time spent sending the response back to the user.

Wooble