diff options
| author | Greg Steuck <greg@nest.cx> | 2022-08-29 12:09:05 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2022-08-29 12:35:14 +0200 |
| commit | 94da0b6bfbd4fae9ee83e29cd5083e6070367889 (patch) | |
| tree | 4aca562920765691ed7a2bd77c4f0b5edbd4e6e8 /pkg/report/openbsd.go | |
| parent | f1bbaaa0bb2a52a3bebb2ac75527a795a8d41a72 (diff) | |
pkg/report: suppress "Broken pipe" panics
They are invalid and we're tired of manually marking them as such.
Diffstat (limited to 'pkg/report/openbsd.go')
| -rw-r--r-- | pkg/report/openbsd.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/report/openbsd.go b/pkg/report/openbsd.go index 13e5a5136..77cb98a76 100644 --- a/pkg/report/openbsd.go +++ b/pkg/report/openbsd.go @@ -21,6 +21,7 @@ func ctorOpenbsd(cfg *config) (reporterImpl, []string, error) { suppressions := []string{ "panic: vop_generic_badop", "witness: lock order reversal:\\n(.*\\n)*.*[0-9stnd]+ 0x[0-9a-f]+ inode(.*\\n)*.*lock order .* first seen at", + "panic:.*send disconnect: Broken pipe", } return ctx, suppressions, nil } |
