Changeset 627


Ignore:
Timestamp:
Jun 21, 2008, 9:10:55 PM (16 years ago)
Author:
price
Message:

web: don't send mail on error if it's one of us testing

I started the list with the three of us who've generated error mail
so far. Add yourself if you like.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-www/code/main.py

    r613 r627  
    618618             errorMessage=str(err), stderr=emsg, traceback=traceback)
    619619    details = templates.error_raw(searchList=[d])
    620     send_error_mail('xvm error on %s for %s: %s' % (op, username, err),
    621                     details)
     620    if username not in ('price', 'ecprice', 'andersk'): #add yourself at will
     621        send_error_mail('xvm error on %s for %s: %s' % (op, username, err),
     622                        details)
    622623    d['details'] = details
    623624    return templates.error(searchList=[d])
Note: See TracChangeset for help on using the changeset viewer.