Skip to content

Commit

Permalink
Bump golang from 1.22.6-bookworm to 1.23.0-bookworm (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 15, 2024
1 parent 2b0c08e commit f492fff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright 2024-present Intel Corporation

# Stage pfcpsim-build: builds the pfcpsim docker image
FROM golang:1.22.6-bookworm AS builder
FROM golang:1.23.0-bookworm AS builder
WORKDIR /pfcpctl

COPY . .
Expand Down
4 changes: 2 additions & 2 deletions internal/pfcpctl/commands/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func (c *associate) Execute(args []string) error {
log.Fatalf("Error while associating: %v", err)
}

log.Infof(res.Message)
log.Infof("%s", res.Message)

return nil
}
Expand All @@ -76,7 +76,7 @@ func (c *disassociate) Execute(args []string) error {
log.Fatalf("Error while disassociating: %v", err)
}

log.Infof(res.Message)
log.Infof("%s", res.Message)

return nil
}
6 changes: 3 additions & 3 deletions internal/pfcpctl/commands/sessions.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (s *sessionCreate) Execute(args []string) error {
log.Fatalf("Error while creating sessions: %v", err)
}

log.Infof(res.Message)
log.Infof("%s", res.Message)

return nil
}
Expand All @@ -116,7 +116,7 @@ func (s *sessionModify) Execute(args []string) error {
log.Fatalf("Error while modifying sessions: %v", err)
}

log.Infof(res.Message)
log.Infof("%s", res.Message)

return nil
}
Expand All @@ -136,7 +136,7 @@ func (s *sessionDelete) Execute(args []string) error {
log.Fatalf("Error while deleting sessions: %v", err)
}

log.Infof(res.Message)
log.Infof("%s", res.Message)

return nil
}

0 comments on commit f492fff

Please sign in to comment.