Exclude initialization failed errors from slack (#18232)

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin
2024-09-24 10:17:43 -06:00
committed by GitHub
parent 0e86ba0983
commit b69c6ee7df
+4
View File
@@ -369,6 +369,10 @@ fn report_to_slack(panic: &Panic) -> bool {
return false;
}
if panic.payload.contains("ERROR_INITIALIZATION_FAILED") {
return false;
}
if panic
.payload
.contains("GPU has crashed, and no debug information is available")