Skip to content

Commit ff1ab7e

Browse files
committed
always include split rules in base64 string
1 parent d704e2d commit ff1ab7e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/sentry/grouping/enhancer/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -715,10 +715,7 @@ def _get_base64_bytes_from_rules(self, rules: list[EnhancementRule]) -> bytes:
715715
@cached_property
716716
def base64_string(self) -> str:
717717
"""A base64 string representation of the enhancements object"""
718-
rulesets = [self.rules]
719-
720-
if self.run_split_enhancements:
721-
rulesets.extend([self.classifier_rules, self.contributes_rules])
718+
rulesets = [self.rules, self.classifier_rules, self.contributes_rules]
722719

723720
# Create a base64 bytestring for each set of rules, and join them with a character we know
724721
# can never appear in base64. We do it this way rather than combining all three sets of

0 commit comments

Comments
 (0)