Advertisement
Guest User

Untitled

a guest
Oct 13th, 2015
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # Decorator
  2.  
  3. @decorator
  4. def check_db_connection(func, *args, **kwargs):
  5. try:
  6. db.get_conn().ping(True)
  7. except:
  8. logging.error(traceback.format_exc())
  9.  
  10. return func(*args, **kwargs)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement