Skip to content

Commit

Permalink
correct scale error messages formatting
Browse files Browse the repository at this point in the history
Co-authored-by: Milas Bowman <devnull@milas.dev>
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
  • Loading branch information
glours and milas committed Sep 13, 2023
1 parent 57245ab commit 2c51c69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/compose/scale.go
Expand Up @@ -95,12 +95,12 @@ func parseServicesReplicasArgs(args []string) (map[string]int, error) {
for _, arg := range args {
key, val, ok := strings.Cut(arg, "=")
if !ok || key == "" || val == "" {
return nil, errors.Errorf("Invalide scale specifier %q.", arg)
return nil, errors.Errorf("invalid scale specifier: %s", arg)
}
intValue, err := strconv.Atoi(val)

if err != nil {
return nil, errors.Errorf("Invalide scale specifier, can't parse replicate value to int %q.", arg)
return nil, errors.Errorf("invalid scale specifier: can't parse replica value as int: %v", arg)
}
serviceReplicaTuples[key] = intValue
}
Expand Down

0 comments on commit 2c51c69

Please sign in to comment.