From e8b1041f47d33a31a377733aeecaf114a229598a Mon Sep 17 00:00:00 2001 From: Victor Lyuboslavsky Date: Wed, 22 Nov 2023 15:14:26 -0600 Subject: [PATCH] Fix for #15171 (#15292) Fix for #15171 --- server/fleet/hosts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fleet/hosts.go b/server/fleet/hosts.go index 847ba74333..6de340ebe8 100644 --- a/server/fleet/hosts.go +++ b/server/fleet/hosts.go @@ -318,7 +318,7 @@ type Host struct { DEPAssignedToFleet *bool `json:"dep_assigned_to_fleet,omitempty" db:"dep_assigned_to_fleet" csv:"-"` // LastRestartedAt is a UNIX timestamp that indicates when the Host was last restarted. - LastRestartedAt time.Time `json:"last_restarted_at" db:"last_restarted_at"` + LastRestartedAt time.Time `json:"last_restarted_at" db:"last_restarted_at" csv:"last_restarted_at"` } type MDMHostData struct {