From: aa7133@att.com Date: Thu, 29 Oct 2020 14:54:38 +0000 (+0300) Subject: 5.4.5 Found cut and paste error in the prometheus add function on Service Update... X-Git-Tag: 5.4.8~11 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=7c07fee277e7deddaf0d092994f224fc7a39afab;p=ric-plt%2Fe2.git 5.4.5 Found cut and paste error in the prometheus add function on Service Update Request after scan found another place like the above Change-Id: I10a4a8292e8a0bd11420a2343605646706a47597 Signed-off-by: aa7133@att.com --- diff --git a/RIC-E2-TERMINATION/container-tag.yaml b/RIC-E2-TERMINATION/container-tag.yaml index 8a5b623..486b35d 100644 --- a/RIC-E2-TERMINATION/container-tag.yaml +++ b/RIC-E2-TERMINATION/container-tag.yaml @@ -1,3 +1,3 @@ # The Jenkins job requires a tag to build the Docker image. # Global-JJB script assumes this file is in the repo root. -tag: 5.4.4 +tag: 5.4.5 diff --git a/RIC-E2-TERMINATION/sctpThread.cpp b/RIC-E2-TERMINATION/sctpThread.cpp index c819909..310e8a4 100644 --- a/RIC-E2-TERMINATION/sctpThread.cpp +++ b/RIC-E2-TERMINATION/sctpThread.cpp @@ -2200,7 +2200,7 @@ int receiveXappMessages(Sctp_Map_t *sctpMap, break; } message.peerInfo->counters[OUT_UN_SUCC][MSG_COUNTER][ProcedureCode_id_RICserviceUpdate]->Increment(); - message.peerInfo->counters[OUT_UN_SUCC][BYTES_COUNTER][ProcedureCode_id_RICserviceQuery]->Increment(rmrMessageBuffer.rcvMessage->len); + message.peerInfo->counters[OUT_UN_SUCC][BYTES_COUNTER][ProcedureCode_id_RICserviceUpdate]->Increment(rmrMessageBuffer.rcvMessage->len); if (sendDirectionalSctpMsg(rmrMessageBuffer, message, 0, sctpMap) != 0) { mdclog_write(MDCLOG_ERR, "Failed to send RIC_SERVICE_UPDATE_FAILURE"); return -6;