Exclude initialization failed errors from slack (#18232)
Release Notes: - N/A
This commit is contained in:
parent
0e86ba0983
commit
b69c6ee7df
1 changed files with 4 additions and 0 deletions
|
@ -369,6 +369,10 @@ fn report_to_slack(panic: &Panic) -> bool {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if panic.payload.contains("ERROR_INITIALIZATION_FAILED") {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if panic
|
if panic
|
||||||
.payload
|
.payload
|
||||||
.contains("GPU has crashed, and no debug information is available")
|
.contains("GPU has crashed, and no debug information is available")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue