Skip to content

Commit

Permalink
fix: non-3gpp deregistration api http status
Browse files Browse the repository at this point in the history
  • Loading branch information
a3828162 committed Aug 26, 2024
1 parent fb0f449 commit cfdb1d4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ func (p *Processor) AmfContextNon3gppProcedure(
c.JSON(int(pd.Status), pd)
}
PreHandleOnDataChangeNotify(ueId, CurrentResourceUri, patchItem, origValue, newValue)
c.Status(http.StatusOK)
c.Status(http.StatusNoContent)

Check failure on line 37 in internal/sbi/processor/amf_non3_gpp_access_registration_document.go

View workflow job for this annotation

GitHub Actions / lint (1.21)

File is not `gofumpt`-ed (gofumpt)
}

Check failure on line 38 in internal/sbi/processor/amf_non3_gpp_access_registration_document.go

View workflow job for this annotation

GitHub Actions / lint (1.21)

unnecessary trailing newline (whitespace)

func (p *Processor) CreateAmfContextNon3gppProcedure(
Expand Down

0 comments on commit cfdb1d4

Please sign in to comment.