Commit a9965b92 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

minor mec011 & mec021 fixes

parent fed84dae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1714,7 +1714,8 @@ func refreshTrackedDevCtxOwner(appName string) {
		targetAppIds, found := deviceTargetMap[address]
		if !found {
			// Get target app instances for device
			targetAppIds, err := getTargetApps(appName, address)
			var err error
			targetAppIds, err = getTargetApps(appName, address)
			if err != nil {
				log.Error(err.Error())
				continue
+1 −1
Original line number Diff line number Diff line
@@ -1338,7 +1338,7 @@ func checkSerAvailNotification(sInfo *ServiceInfo, mep string, changeType Servic
		}
		serAvailabilityRef := ServiceAvailabilityNotificationServiceReferences{
			Link: &LinkType{
				Href: hostUrl.String() + basePath + "applications/" + sInfo.SerInstanceId,
				Href: hostUrl.String() + basePath + "services/" + sInfo.SerInstanceId,
			},
			SerName:       sInfo.SerName,
			SerInstanceId: sInfo.SerInstanceId,