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

Fix retry decorator #79

Merged
merged 3 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions fyle/platform/internals/decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ def new_fn(*args, **kwargs):
while attempt < n:
try:
return func(*args, **kwargs)
except exceptions:
if exc.InvalidTokenError in exceptions:
except exceptions as e:
if isinstance(e, exc.InvalidTokenError):
Auth().update_access_token()
time.sleep(backoff)
attempt += 1
raise exc.RetryException('failed to execute %s despite retrying' % func)
raise exc.RetryException('failed to execute %s despite retrying' % func.__name__)

return new_fn

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='fyle',
version='v0.33.0',
version='v0.33.1',
author='Siva Narayanan',
author_email='[email protected]',
description='Python SDK for accessing Fyle Platform APIs',
Expand Down
Loading