nope, but it would easy to have such system...

a) you have a function

def myfunc():
      blablabla
      return 1

you wrap it on a try:except and send a notification

def myfunc():
    try:
        blablablabla
        return 1
    except:
        mail.send(...)


b) you code a "watcher" task that notifies you if some task failed
 
def thewatcher():
    notify_me_on = db(db.scheduler_task.status == 'FAILED').select()
    for task in notify_me_on:
        mail.send(....)

and you queue it with repeats = 0

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to