mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 19:45:46 +00:00
Sentry: ignore NotAuthenticated errors (#5702)
- Causes a lot of unnecessary error reports
This commit is contained in:
@ -31,6 +31,7 @@ def sentry_ignore_errors():
|
|||||||
Http404,
|
Http404,
|
||||||
ValidationError,
|
ValidationError,
|
||||||
rest_framework.exceptions.AuthenticationFailed,
|
rest_framework.exceptions.AuthenticationFailed,
|
||||||
|
rest_framework.exceptions.NotAuthenticated,
|
||||||
rest_framework.exceptions.PermissionDenied,
|
rest_framework.exceptions.PermissionDenied,
|
||||||
rest_framework.exceptions.ValidationError,
|
rest_framework.exceptions.ValidationError,
|
||||||
]
|
]
|
||||||
|
Reference in New Issue
Block a user