Skip to content

feat(crons): Change crons groupcategory name #52037

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
merged 3 commits into from
Jul 6, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/sentry/issues/grouptype.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class GroupCategory(Enum):
ERROR = 1
PERFORMANCE = 2
PROFILE = 3
MONITOR = 4
CRON = 4
REPLAY = 5


Expand Down Expand Up @@ -344,7 +344,7 @@ class MonitorCheckInFailure(GroupType):
type_id = 4001
slug = "monitor_check_in_failure"
description = "Monitor Check In Failed"
category = GroupCategory.MONITOR.value
category = GroupCategory.CRON.value
released = True


Expand All @@ -353,7 +353,7 @@ class MonitorCheckInTimeout(GroupType):
type_id = 4002
slug = "monitor_check_in_timeout"
description = "Monitor Check In Timeout"
category = GroupCategory.MONITOR.value
category = GroupCategory.CRON.value
released = True


Expand All @@ -362,7 +362,7 @@ class MonitorCheckInMissed(GroupType):
type_id = 4003
slug = "monitor_check_in_missed"
description = "Monitor Check In Missed"
category = GroupCategory.MONITOR.value
category = GroupCategory.CRON.value
released = True


Expand Down