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

Don't use singleton CredentialStore in requires_credentials decorator #68

Merged
merged 1 commit into from
Aug 19, 2020
Merged
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
7 changes: 6 additions & 1 deletion src/pyze/api/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ class MissingCredentialException(Exception):
def requires_credentials(*names):
def _requires_credentials(func):
def inner(*args, **kwargs):
credentials = None
if args[0] and hasattr(args[0], '_credentials'):
credentials = args[0]._credentials
elif args[0] and hasattr(args[0], '_kamereon'):
credentials = args[0]._kamereon._credentials
for name in names:
if name not in CredentialStore():
if name not in credentials:
raise MissingCredentialException(name)
return func(*args, **kwargs)

Expand Down