From 4bcd88e58bf39f431bca55bafc11af3278ca624b Mon Sep 17 00:00:00 2001 From: zackattack01 Date: Fri, 1 Mar 2024 13:35:36 -0500 Subject: [PATCH] update no instances case status as informational --- ee/debug/checkups/osquery_restarts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ee/debug/checkups/osquery_restarts.go b/ee/debug/checkups/osquery_restarts.go index 1fae4bf3c..391985b7e 100644 --- a/ee/debug/checkups/osquery_restarts.go +++ b/ee/debug/checkups/osquery_restarts.go @@ -29,7 +29,7 @@ func (orc *osqRestartCheckup) Run(ctx context.Context, extraFH io.Writer) error restartHistory, err := history.GetHistory() if err != nil && errors.Is(err, history.NoInstancesError{}) { - orc.status = Passing + orc.status = Informational orc.summary = "No osquery restart history instances available" return nil }