We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 103d256 commit de42efeCopy full SHA for de42efe
sentry_sdk/tracing.py
@@ -272,6 +272,8 @@ def set_http_status(self, http_status):
272
elif 400 <= http_status < 500:
273
if http_status == 403:
274
self.set_status("permission_denied")
275
+ elif http_status == 404:
276
+ self.set_status("not_found")
277
elif http_status == 429:
278
self.set_status("resource_exhausted")
279
elif http_status == 413:
0 commit comments