Skip to content

Commit c6f1979

Browse files
authored
ref(grouping): Use single default for config (#95096)
It used to be that we didn't upgrade grouping config unless the customer did it manually. We therefore had different default configs based on when the project was created. Since that's no longer the case, we no longer need a split default. (In fact, it's caused problems, because it's the reason we keep ending up with new projects entering the transition period.) This therefore replaces the tiered defaults with a single one.
1 parent 2df024c commit c6f1979

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

src/sentry/projectoptions/defaults.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,7 @@
2121
# `mobile` strategy via grouping auto-updates.
2222
BETA_GROUPING_CONFIG = ""
2323
# This registers the option as a valid project option
24-
register(
25-
key="sentry:grouping_config",
26-
epoch_defaults={
27-
1: LEGACY_GROUPING_CONFIG,
28-
3: "newstyle:2019-05-08",
29-
4: DEFAULT_GROUPING_CONFIG,
30-
},
31-
)
24+
register(key="sentry:grouping_config", default=DEFAULT_GROUPING_CONFIG)
3225

3326
register(key="sentry:grouping_enhancements", default="")
3427
register(key="sentry:derived_grouping_enhancements", default="")

0 commit comments

Comments
 (0)