mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:38:02 +00:00
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;
|
||||
}
|
||||
|
||||
if panic.payload.contains("ERROR_INITIALIZATION_FAILED") {
|
||||
return false;
|
||||
}
|
||||
|
||||
if panic
|
||||
.payload
|
||||
.contains("GPU has crashed, and no debug information is available")
|
||||
|
|
Loading…
Reference in a new issue