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 3f33a9f commit 15e0e4cCopy full SHA for 15e0e4c
bugbot/crash/analyzer.py
@@ -760,6 +760,7 @@ def find_new_actionable_crashes(
760
"_histogram.date",
761
"_cardinality.install_time",
762
"_cardinality.oom_allocation_size",
763
+ "cpu_info",
764
],
765
"_results_number": 0,
766
"_facets_size": 10000,
@@ -791,6 +792,13 @@ def handler(search_resp: dict, data: list):
791
792
# The crash is not new, skip it.
793
continue
794
795
+ if any(
796
+ cpu_info["term"] == "family 6 model 183 stepping 1"
797
+ for cpu_info in facets["cpu_info"]
798
+ ):
799
+ # Ignore crashes that are likely caused by a broken CPU.
800
+ continue
801
+
802
if any(
803
reason["term"].startswith(io_error_prefix)
804
for reason in facets["reason"]
0 commit comments