From 9bacd5a34e12f90560c1d594634e0526185facde Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Mon, 2 Dec 2024 15:28:23 +0100 Subject: pkg/report: detect the lost connection crash type --- pkg/report/crash/types.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/report') diff --git a/pkg/report/crash/types.go b/pkg/report/crash/types.go index 9a5be9136..6de004274 100644 --- a/pkg/report/crash/types.go +++ b/pkg/report/crash/types.go @@ -19,6 +19,7 @@ const ( AtomicSleep = Type("ATOMIC_SLEEP") KMSAN = Type("KMSAN") SyzFailure = Type("SYZ_FAILURE") + LostConnection = Type("LOST_CONNECTION") ) func (t Type) String() string { -- cgit mrf-deployment