The doc says that HTTP requests initiated by cron job can run for 10 minutes (believe, this is about urlfetch).
My cron job does another time consuming task - e-mails sending (thru google.appengine.api.mail
). Do I also have 10 minutes for this activity (before I'll get DeadlineExceededError
)? Or, should I use task queue to send each message in the separate task?