From 531b49c31cc5a6a8df909940a00a690d7a83a1af Mon Sep 17 00:00:00 2001 From: powerkimhub Date: Wed, 28 Aug 2024 00:05:05 +0900 Subject: [PATCH] Fix the uncorrect type mismatch to fetch info from metadb --- api-runtime/common-runtime/VMManager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-runtime/common-runtime/VMManager.go b/api-runtime/common-runtime/VMManager.go index 81d831feb..dba94c5a3 100644 --- a/api-runtime/common-runtime/VMManager.go +++ b/api-runtime/common-runtime/VMManager.go @@ -195,7 +195,7 @@ func GetVMUsingRS(connectionName string, cspID string) (VMUsingResources, error) //// ---(c) Get Using Key IID List // get Key IID:list - var keyIIDInfoList []*SGIIDInfo + var keyIIDInfoList []*KeyIIDInfo err = infostore.ListByCondition(&keyIIDInfoList, CONNECTION_NAME_COLUMN, connectionName) if err != nil { cblog.Error(err)