Loading go-apps/meep-app-enablement/server/service-mgmt/service-mgmt.go +8 −1 Original line number Diff line number Diff line Loading @@ -446,8 +446,15 @@ func appServicesPOST(w http.ResponseWriter, r *http.Request) { port = p } } // Build a unique CAPIF API name: serName + category + sandboxName. // Including category avoids collisions when multiple APIs share the same serName // (e.g. mep1-mec015-1 registers both MTS and BWM). capifApiName := sInfo.SerName + "-" + sandboxName if sInfo.SerCategory != nil && sInfo.SerCategory.Name != "" { capifApiName = sInfo.SerName + "-" + sInfo.SerCategory.Name + "-" + sandboxName } apiId, err := capifClient.PublishServiceAPI( sInfo.SerName+"-"+sandboxName, capifApiName, sInfo.Version, uri, sInfo.SerName, Loading Loading
go-apps/meep-app-enablement/server/service-mgmt/service-mgmt.go +8 −1 Original line number Diff line number Diff line Loading @@ -446,8 +446,15 @@ func appServicesPOST(w http.ResponseWriter, r *http.Request) { port = p } } // Build a unique CAPIF API name: serName + category + sandboxName. // Including category avoids collisions when multiple APIs share the same serName // (e.g. mep1-mec015-1 registers both MTS and BWM). capifApiName := sInfo.SerName + "-" + sandboxName if sInfo.SerCategory != nil && sInfo.SerCategory.Name != "" { capifApiName = sInfo.SerName + "-" + sInfo.SerCategory.Name + "-" + sandboxName } apiId, err := capifClient.PublishServiceAPI( sInfo.SerName+"-"+sandboxName, capifApiName, sInfo.Version, uri, sInfo.SerName, Loading