[go: nahoru, domu]

Skip to content

Commit

Permalink
Better error message + typo fix
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Fest <marcel.fest@telekom.de>
  • Loading branch information
Cellebyte committed Jun 26, 2024
1 parent 4e6e983 commit a5b7a0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubevip/config_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ func ParseEnvironment(c *Config) error {
} else if i < 0 {
return fmt.Errorf("no support of negative [%d] in env var %q", i, vipRoutingTableID)
}
return fmt.Errorf("no support for int64 natively on system only [int%d]", bits.OnesCount(math.MaxUint))
return fmt.Errorf("no support for int64, system natively supports [int%d]", bits.OnesCount(math.MaxUint))
}

// Routing Table Type
Expand Down

0 comments on commit a5b7a0a

Please sign in to comment.