From: naman.gupta Date: Wed, 14 Dec 2022 16:20:10 +0000 (+0530) Subject: Fixing A1 healthcheck X-Git-Tag: 3.0.1~1 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=efeb06cc49320e812441a43a071907a9830955ad;p=ric-plt%2Fa1.git Fixing A1 healthcheck Fixing A1 healthcheck. Signed-off-by: naman.gupta Change-Id: I42b5c87c41a2efc25ac1cd63bc53e969882de81e --- diff --git a/pkg/resthooks/resthooks.go b/pkg/resthooks/resthooks.go index cf7a2d1..49df6f4 100644 --- a/pkg/resthooks/resthooks.go +++ b/pkg/resthooks/resthooks.go @@ -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 {