Skip to content

Commit

Permalink
fix ci error
Browse files Browse the repository at this point in the history
  • Loading branch information
ianchen0119 committed Aug 10, 2023
1 parent ab8d46a commit a077a7a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion internal/sbi/producer/datapath.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ func waitAllPfcpRsp(
}

func EstHandler(isDone <-chan struct{},
smContext *smf_context.SMContext, success bool) {
smContext *smf_context.SMContext, success bool,
) {
// Waiting for Create SMContext Request completed
if isDone != nil {
<-isDone
Expand Down
4 changes: 3 additions & 1 deletion internal/sbi/producer/pdu_session.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import (
"github.com/free5gc/util/httpwrapper"
)

func HandlePDUSessionSMContextCreate(isDone <-chan struct{}, request models.PostSmContextsRequest) *httpwrapper.Response {
func HandlePDUSessionSMContextCreate(isDone <-chan struct{},
request models.PostSmContextsRequest,
) *httpwrapper.Response {
// GSM State
// PDU Session Establishment Accept/Reject
var response models.PostSmContextsResponse
Expand Down

0 comments on commit a077a7a

Please sign in to comment.