Merge "Add schemas for input events of ODU slice assurance usecase"
[nonrtric.git] / test / usecases / oruclosedlooprecovery / goversion / internal / linkfailure / linkfailurehandler.go
index 558d0d7..3aecf45 100644 (file)
@@ -32,10 +32,9 @@ import (
 )
 
 type Configuration struct {
-       InfoCoordAddress string
-       SDNRAddress      string
-       SDNRUser         string
-       SDNRPassword     string
+       SDNRAddress  string
+       SDNRUser     string
+       SDNRPassword string
 }
 
 const rawSdnrPath = "/rests/data/network-topology:network-topology/topology=topology-netconf/node=[O-DU-ID]/yang-ext:mount/o-ran-sc-du-hello-world:network-function/du-to-ru-connection=[O-RU-ID]"
@@ -77,10 +76,10 @@ func (lfh LinkFailureHandler) sendUnlockMessage(oRuId string) {
                if error := restclient.Put(lfh.config.SDNRAddress+sdnrPath, unlockMessage, lfh.client, lfh.config.SDNRUser, lfh.config.SDNRPassword); error == nil {
                        log.Debugf("Sent unlock message for O-RU: %v to O-DU: %v.", oRuId, oDuId)
                } else {
-                       log.Warn(error)
+                       log.Warn("Send of unlock message failed due to ", error)
                }
        } else {
-               log.Warn(err)
+               log.Warn("Send of unlock message failed due to ", err)
        }
 
 }