Skip to content

Commit

Permalink
chore(deps): bump golang from 1.22.6-bookworm to 1.23.0-bookworm (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 20, 2024
1 parent e5a0f11 commit 4092a70
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
10 changes: 0 additions & 10 deletions .reuse/dep5

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0
#

FROM golang:1.22.6-bookworm AS builder
FROM golang:1.23.0-bookworm AS builder

LABEL maintainer="Aether SD-Core <[email protected]>"

Expand Down
3 changes: 3 additions & 0 deletions callback/api_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ func HTTPSmPolicyUpdateNotification(c *gin.Context) {
}

resBody, err := openapi.Serialize(HTTPResponse.Body, "application/json")
if err != nil {
log.Println(err)
}
c.Writer.Write(resBody)
c.Status(HTTPResponse.Status)
}
Expand Down
2 changes: 1 addition & 1 deletion context/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func (smContext *SMContext) UnmarshalJSON(data []byte) error {
}

if err := json.Unmarshal(data, &aux); err != nil {
fmt.Println("Err in customized unMarshall!!")
fmt.Println("err in customized unMarshall!!")
return err
}

Expand Down
2 changes: 1 addition & 1 deletion smf.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func main() {
func action(c *cli.Context) error {
if err := SMF.Initialize(c); err != nil {
logger.CfgLog.Errorf("%+v", err)
return fmt.Errorf("Failed to initialize !!")
return fmt.Errorf("failed to initialize")
}

SMF.Start()
Expand Down

0 comments on commit 4092a70

Please sign in to comment.