Skip to content

Commit c532636

Browse files
authored
chore(issue-platform): Set PerformanceHTTPOverheadGroupType to be fully released. (#89414)
This no longer needs to use feature flags since it's full released. Confirmed with perf team <!-- Describe your PR here. -->
1 parent 741d3bf commit c532636

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/sentry/issues/grouptype.py

+1
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ class PerformanceHTTPOverheadGroupType(PerformanceGroupTypeDefaults, GroupType):
425425
noise_config = NoiseConfig(ignore_limit=20)
426426
category = GroupCategory.PERFORMANCE.value
427427
default_priority = PriorityLevel.LOW
428+
released = True
428429

429430

430431
@dataclass(frozen=True)

tests/sentry/issues/test_grouptype.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
GroupTypeRegistry,
1212
NoiseConfig,
1313
PerformanceGroupTypeDefaults,
14-
PerformanceHTTPOverheadGroupType,
1514
ProfileJSONDecodeType,
1615
get_group_type_by_slug,
1716
get_group_types_by_category,
1817
)
1918
from sentry.testutils.cases import TestCase
19+
from sentry.uptime.grouptype import UptimeDomainCheckFailure
2020

2121

2222
class BaseGroupTypeTest(TestCase):
@@ -159,14 +159,14 @@ class TestGroupType(PerformanceGroupTypeDefaults, GroupType):
159159
class GroupRegistryTest(BaseGroupTypeTest):
160160
def test_get_visible(self) -> None:
161161
registry = GroupTypeRegistry()
162-
registry.add(PerformanceHTTPOverheadGroupType)
162+
registry.add(UptimeDomainCheckFailure)
163163
registry.add(ProfileJSONDecodeType)
164164
assert registry.get_visible(self.organization) == []
165-
with self.feature(PerformanceHTTPOverheadGroupType.build_visible_feature_name()):
166-
assert registry.get_visible(self.organization) == [PerformanceHTTPOverheadGroupType]
165+
with self.feature(UptimeDomainCheckFailure.build_visible_flagpole_feature_name()):
166+
assert registry.get_visible(self.organization) == [UptimeDomainCheckFailure]
167167
registry.add(ErrorGroupType)
168-
with self.feature(PerformanceHTTPOverheadGroupType.build_visible_feature_name()):
168+
with self.feature(UptimeDomainCheckFailure.build_visible_flagpole_feature_name()):
169169
assert set(registry.get_visible(self.organization)) == {
170-
PerformanceHTTPOverheadGroupType,
170+
UptimeDomainCheckFailure,
171171
ErrorGroupType,
172172
}

0 commit comments

Comments
 (0)