From e3ef9d4276af1dd81ce18ca2af0332d5c71c9335 Mon Sep 17 00:00:00 2001 From: David Allen Date: Tue, 27 Aug 2024 15:40:43 -0600 Subject: [PATCH] Fixed field tag in crawler --- pkg/crawler/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/crawler/main.go b/pkg/crawler/main.go index 78af9f9..e28cb1b 100644 --- a/pkg/crawler/main.go +++ b/pkg/crawler/main.go @@ -45,7 +45,7 @@ type InventoryDetail struct { URI string `json:"uri,omitempty"` // URI of the BMC UUID string `json:"uuid,omitempty"` // UUID of Node Manufacturer string `json:"manufacturer,omitempty"` // Manufacturer of the Node - SystemType string `json:"system_type,omitempty` // System type of the Node + SystemType string `json:"system_type,omitempty"` // System type of the Node Name string `json:"name,omitempty"` // Name of the Node Model string `json:"model,omitempty"` // Model of the Node Serial string `json:"serial,omitempty"` // Serial number of the Node