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 b516237 commit 9f897a6Copy full SHA for 9f897a6
src/sentry/seer/anomaly_detection/utils.py
@@ -45,7 +45,7 @@ def get_anomaly_evaluation_from_workflow_engine(
45
) -> bool | DetectorEvaluationResult | None:
46
evaluation = None
47
for result in data_packet_processing_results:
48
- if result[0] == detector:
+ if result[0].id == detector.id:
49
evaluation = result[1].get("values")
50
if evaluation:
51
return evaluation.priority == DetectorPriorityLevel.HIGH
0 commit comments