Conversation
…uping info endpoint The EventGroupingInfoEndpoint was mutating the class-level `initial_context` dict on StrategyConfiguration when setting `reverse_stacktraces`. Since `initial_context` is a class attribute (not instance), this mutation persisted across all subsequent uses of the same grouping config class, causing `reverse_when_serializing` to be set on stacktrace components and reversing frame order in grouping info snapshots. Fix: create an instance-level copy of `initial_context` before mutating it.
This was referenced Feb 23, 2026
rbro112
approved these changes
Feb 25, 2026
wedamija
approved these changes
Feb 25, 2026
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
Fixes #108776
Fixes #108878
Fixes #108923
Fixes #108929
Fixes #108971
Fixes #108984
Fixes #108985
Fixes #108987
Fixes #108999
EventGroupingInfoEndpoint.get()mutatesgrouping_config.initial_context["reverse_stacktraces"], butinitial_contextis a class-level dict onStrategyConfiguration, not an instance attribute. This mutation persists across all subsequent uses of the same grouping config class, causingreverse_when_serializingto be set on stacktrace components and reversing frame order in snapshot tests.initial_contextbefore mutating itTest plan