-
Notifications
You must be signed in to change notification settings - Fork 80
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
Removing noisy auth log #5920
Removing noisy auth log #5920
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
1 Skipped Deployment
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #5920 +/- ##
==========================================
- Coverage 87.00% 86.99% -0.01%
==========================================
Files 416 416
Lines 25524 25522 -2
Branches 2758 2758
==========================================
- Hits 22206 22204 -2
Misses 2718 2718
Partials 600 600 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved with a nit
src/fides/api/oauth/utils.py
Outdated
@@ -339,6 +339,14 @@ def has_permissions( | |||
has_role: bool = _has_scope_via_role( | |||
token_data=token_data, client=client, endpoint_scopes=endpoint_scopes | |||
) | |||
|
|||
if not has_direct_scope and not has_role: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: I prefer not duplicating the permission check for the log; it's the kind of pattern that invites subtle errors later on. Try this:
if not has_direct_scope and not has_role: | |
has_permissions = has_direct_scope or has_role | |
if not has_permissions: |
src/fides/api/oauth/utils.py
Outdated
"Authorization failed. Missing required scopes: {}. Neither direct scopes nor role-derived scopes were sufficient.", | ||
scopes_required, | ||
) | ||
|
||
return has_direct_scope or has_role |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return has_direct_scope or has_role | |
return has_permissions |
Co-authored-by: Neville Samuell <neville@ethyca.com>
fides
|
Project |
fides
|
Branch Review |
main
|
Run status |
|
Run duration | 00m 48s |
Commit |
|
Committer | Adrian Galvan |
View all properties for this run ↗︎ |
Test results | |
---|---|
|
0
|
|
0
|
|
0
|
|
0
|
|
5
|
View all changes introduced in this branch ↗︎ |
Co-authored-by: Neville Samuell <neville@ethyca.com>
Closes LJ-572
Description Of Changes
Removing noisy log
We'll now only log if direct scopes and role-derived scopes are BOTH missing
Steps to Confirm
Auth token missing required scopes
logs should not be present anymore when debug logging is enabled. This was being logged for all endpoints so any endpoint will do to verify this.Pre-Merge Checklist
CHANGELOG.md
updatedmain
downgrade()
migration is correct and works