From 3b2f21d6084e4a52a02878b71d9695ed891fbdb7 Mon Sep 17 00:00:00 2001 From: "PC-2NR0VQ3\\wai.wong" Date: Fri, 3 Jan 2025 13:19:46 +0000 Subject: [PATCH] fix: removed unnecessary clusterArchitectureName from payload --- pkg/models/architecture.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/models/architecture.go b/pkg/models/architecture.go index 498946a3..c53661e9 100644 --- a/pkg/models/architecture.go +++ b/pkg/models/architecture.go @@ -1,7 +1,6 @@ package models type Architecture struct { - ClusterArchitectureId string `json:"clusterArchitectureId" mapstructure:"id"` - ClusterArchitectureName string `json:"clusterArchitectureName,omitempty"` - Nodes int `json:"nodes" mapstructure:"nodes"` + ClusterArchitectureId string `json:"clusterArchitectureId" mapstructure:"id"` + Nodes int `json:"nodes" mapstructure:"nodes"` }