-
Notifications
You must be signed in to change notification settings - Fork 647
ref: Move Redis breadcrumbs to integration #7129
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
Merged
sentrivana
merged 15 commits into
master
from
ivana/move-redis-breadcrumbs-to-integration
Aug 7, 2026
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
07a3ea3
ref(subprocess): Create breadcrumbs directly in integration
sentrivana 2f91234
.
sentrivana c3aea86
ref: Move Redis breadcrumbs to integration
sentrivana 15d2e2f
.
sentrivana 53ab7f0
really mypy?
sentrivana 0ea13df
.
sentrivana 2f54487
move even earlier
sentrivana 8e6087f
.
sentrivana 91fe6a4
.
sentrivana 5858c87
.
sentrivana 906838b
Merge branch 'master' into ivana/move-breadcrumbs-to-integrations
sentrivana 4e093aa
.
sentrivana 040f223
Merge branch 'ivana/move-breadcrumbs-to-integrations' into ivana/move…
sentrivana 7472af9
remove extra guards
sentrivana 66b2ede
Merge branch 'master' into ivana/move-redis-breadcrumbs-to-integration
sentrivana File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Breadcrumb callbacks can block Redis operations
Medium Severity
The new
add_breadcrumbcalls run outsidecapture_internal_exceptions. Ifbefore_breadcrumbraises, the exception escapes the wrapper before the underlying Redis command executes, turning telemetry callback failures into application failures.Additional Locations (2)
sentry_sdk/integrations/redis/_async_common.py#L129-L135sentry_sdk/integrations/redis/_sync_common.py#L44-L53Reviewed by Cursor Bugbot for commit 7472af9. Configure here.
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.
This is a good point. Will take care of it in #7133