Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump golang from 1.22.6-bookworm to 1.23.0-bookworm #100

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}