mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
Sentry: ignore NotAuthenticated errors (#5702)
- Causes a lot of unnecessary error reports
This commit is contained in:
parent
01f30222eb
commit
59efae0bfc
@ -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,
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user