From 49b10bc78596105f2662a2afb0873ea097288de0 Mon Sep 17 00:00:00 2001 From: Ikram Ul Haq Date: Thu, 15 Aug 2024 12:19:55 +0500 Subject: [PATCH] Fix minor issue related to the SerInstanceId --- go-apps/meep-app-enablement/server/capif-mgmt/service-mgmt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-apps/meep-app-enablement/server/capif-mgmt/service-mgmt.go b/go-apps/meep-app-enablement/server/capif-mgmt/service-mgmt.go index 8264467fd..64bfc8e8d 100644 --- a/go-apps/meep-app-enablement/server/capif-mgmt/service-mgmt.go +++ b/go-apps/meep-app-enablement/server/capif-mgmt/service-mgmt.go @@ -483,7 +483,7 @@ func appServicesByIdPUT(w http.ResponseWriter, r *http.Request) { } dsInfo := &ServiceApiDescription{ ApiName: sInfo.ApiName, - ApiId: uuid.New().String(), + ApiId: sInfo.ApiId, AefProfiles: []AefProfile{*aefProfile}, VendorSpecificUrnetsimeccapifextserviceInfo: &MecServiceInfoCapifExt{ Serializer: sInfo.VendorSpecificUrnetsimeccapifextserviceInfo.Serializer, -- GitLab