Skip to content

Commit

Permalink
Merge pull request #2 from enable-intelligent-containerized-5g/nwdaf_…
Browse files Browse the repository at this point in the history
…building

Nwdaf building
  • Loading branch information
edierbravo committed Jul 24, 2024
2 parents 6c7d733 + bfcd03d commit 1682558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NFs/amf/internal/ngap/dispatcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ func Dispatch(conn net.Conn, msg []byte) {
func HandleSCTPNotification(conn net.Conn, notification sctp.Notification) {
amfSelf := context.AMF_Self()

logger.NgapLog.Infof("Handle SCTP Notification[addr: %+v]", conn.RemoteAddr())
logger.NgapLog.Infof("Handle SCTP Notification[addr: %+v]", conn.RemoteAddr().String())

ran, ok := amfSelf.AmfRanFindByConn(conn)
if !ok {
logger.NgapLog.Warnf("RAN context has been removed[addr: %+v]", conn.RemoteAddr())
logger.NgapLog.Warnf("RAN context has been removed[addr: %+v]", conn.RemoteAddr().String())
return
}

Expand Down

0 comments on commit 1682558

Please sign in to comment.