From 65909ed95166ac9fd062504998c240664ff3c4a1 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Tue, 1 Oct 2024 15:50:18 +0200 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e9457c7b99..7db062694d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ sentry_sdk.init( integrations=[ AioHttpIntegration( - failed_request_status_codes={403, *range(500, 599)}, + failed_request_status_codes={403, *range(500, 600)}, ) ] ) @@ -56,7 +56,7 @@ ```python sentry_sdk.init( integrations=StarletteIntegration( - failed_request_status_codes={403, *range(500, 599)}, + failed_request_status_codes={403, *range(500, 600)}, ), ) ```