Skip to content

Instantly share code, notes, and snippets.

@inactivist
inactivist / flask_pymongo_retry_on_reconnect_error.py
Created February 19, 2014 05:10
Simple decorator for flask and mongoengine/pymongo to auto-retry with delay on pymongo.errors.AutoReconnect exception in a view or other function
"""
Simple view decorator for flask and mongoengine/pymongo to auto-retry with delay on
pymongo.errors.AutoReconnect exception.
"""
from functools import wraps
import time
from pymongo.errors import AutoReconnect
import flask