Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Override retry limits with decorated function's parameter #44

Open
felixonmars opened this issue Oct 7, 2015 · 1 comment
Open

Override retry limits with decorated function's parameter #44

felixonmars opened this issue Oct 7, 2015 · 1 comment

Comments

@felixonmars
Copy link

I would like to allow for overriding the decorator's kwargs while calling the decorated function. A simplified example use case is:

@retry
def request(url):
      return "TADA"

request("someurl", retry_options=dict(stop_max_attempt_number=3))

I can send a pull request if the idea is acceptable. Thanks!

@gcbeltramini
Copy link

You could do something like this:

def request(url, retry_options):
    @retry(**retry_options)
    def request_retry(*args, **kwargs):
        print 'Running request...'
        raise IOError('Error!')
        return "TADA"
    return request_retry(url)

try:
    request("someurl", retry_options=dict(stop_max_attempt_number=3))
except IOError as e:
    print e

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants