Created
May 25, 2014 06:00
-
-
Save laughingman7743/e5cd6c19f830571214e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import time | |
| def retry(ExceptionToCheck, tries=5, delay=5, backoff=2, logger=None): | |
| """Retry calling the decorated function using an exponential backoff. | |
| http://www.saltycrane.com/blog/2009/11/trying-out-retry-decorator-python/ | |
| original from: http://wiki.python.org/moin/PythonDecoratorLibrary#Retry | |
| :param ExceptionToCheck: the exception to check. may be a tuple of | |
| excpetions to check | |
| :type ExceptionToCheck: Exception or tuple | |
| :param tries: number of times to try (not retry) before giving up | |
| :type tries: int | |
| :param delay: initial delay between retries in seconds | |
| :type delay: int | |
| :param backoff: backoff multiplier e.g. value of 2 will double the delay | |
| each retry | |
| :type backoff: int | |
| :param logger: logger to use. If None, print | |
| :type logger: logging.Logger instance | |
| """ | |
| def deco_retry(f): | |
| def f_retry(*args, **kwargs): | |
| mtries, mdelay = tries, delay | |
| try_one_last_time = True | |
| while mtries > 1: | |
| try: | |
| return f(*args, **kwargs) | |
| try_one_last_time = False | |
| break | |
| except ExceptionToCheck, e: | |
| msg = "%s, Retrying in %d seconds..." % (str(e), mdelay) | |
| #msg = "Retrying in %d seconds..." % mdelay | |
| if logger: | |
| logger.warning(msg) | |
| else: | |
| print msg | |
| time.sleep(mdelay) | |
| mtries -= 1 | |
| mdelay *= backoff | |
| if try_one_last_time: | |
| return f(*args, **kwargs) | |
| return | |
| return f_retry # true decorator | |
| return deco_retry |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment