We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77f6767 commit 7d9b2a5Copy full SHA for 7d9b2a5
src/sentry/tasks/seer/night_shift/simple_triage.py
@@ -92,4 +92,7 @@ def fixability_score_strategy(
92
def priority_label(priority: int | None) -> str | None:
93
if priority is None:
94
return None
95
- return PriorityLevel(priority).name.lower()
+ try:
96
+ return PriorityLevel(priority).name.lower()
97
+ except ValueError:
98
+ return None
0 commit comments