cron does not run at 3 second intervals so that would not work.

if TransientError occurs the task worker will return an error and be
retried. as long as your task is idempotent or you are using a
transactional task you don't need to do anything. The bad news is it
sometimes takes 15-30s for this error to be raised and you will exceed
your 3s timeout.

on the other hand if you always return a non-error code from your
handler, even in the event of exception, then you would not need to
worry about the auto-retry adding duplicate tasks. maybe that is the
best solution for you.

-- 
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.

Reply via email to