Skip to content

Commit

Permalink
Fix retry decorator (#79)
Browse files Browse the repository at this point in the history
* Support Accounting Export Summary Bulk POST

* Fix retry decorator
  • Loading branch information
ashwin1111 authored Oct 6, 2023
1 parent fc46a19 commit 9ec804f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 9ec804f

Please sign in to comment.