Fixing A1 healthcheck 33/10133/1
authornaman.gupta <naman.gupta@samsung.com>
Wed, 14 Dec 2022 16:20:10 +0000 (21:50 +0530)
committernaman.gupta <naman.gupta@samsung.com>
Wed, 14 Dec 2022 16:21:59 +0000 (21:51 +0530)
Fixing A1 healthcheck.

Signed-off-by: naman.gupta <naman.gupta@samsung.com>
Change-Id: I42b5c87c41a2efc25ac1cd63bc53e969882de81e

pkg/resthooks/resthooks.go

index cf7a2d1..49df6f4 100644 (file)
@@ -102,12 +102,9 @@ func createResthook(sdlInst iSdl, rmrSenderInst rmr.IRmrSender) *Resthook {
 }
 
 func (rh *Resthook) GetA1Health() bool {
-       data, _ := rh.db.GetAll(a1MediatorNs)
-       if data != nil {
-               a1.Logger.Debug("Database connected and A1 is healthy")
-               return true
-       }
-       return false
+       //TODO : Add database healthcheck
+       a1.Logger.Debug("A1 is healthy")
+       return true
 }
 
 func (rh *Resthook) GetAllPolicyType() []models.PolicyTypeID {