Skip to content

Commit

Permalink
chore: pre-su fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
YuukanOO committed Sep 13, 2024
1 parent 02eb3c6 commit 2f13df3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/deployment/domain/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ func ParsePort(raw string) (Port, error) {
func (p Port) String() string { return strconv.FormatUint(uint64(p), 10) }
func (p Port) Uint32() uint32 { return uint32(p) }

func newEntrypointName(suffix string, router Router, port Port) EntrypointName {
return EntrypointName(suffix + "-" + port.String() + "-" + string(router))
func newEntrypointName(prefix string, router Router, port Port) EntrypointName {
return EntrypointName(prefix + "-" + port.String() + "-" + string(router))
}

// Creates a new service. If the image is empty, a unique image name will be
Expand Down

0 comments on commit 2f13df3

Please sign in to comment.