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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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")