Skip to content

Commit

Permalink
linting fix
Browse files Browse the repository at this point in the history
Signed-off-by: Tarun Pothulapati <tarunpothulapati@outlook.com>
  • Loading branch information
Pothulapati committed Feb 26, 2020
1 parent 8ef593c commit 26b28ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ func parseAddOnValues(values *l5dcharts.Values) (map[string][]byte, error) {

if values.Tracing != nil {
if enabled, ok := values.Tracing["enabled"].(bool); !ok {
return nil, fmt.Errorf("invalid value for 'Tracing.enabled' (should be boolean):", values.Tracing["enabled"])
return nil, fmt.Errorf("invalid value for 'Tracing.enabled' (should be boolean): %s", values.Tracing["enabled"])
} else if enabled {
data, err := yaml.Marshal(values.Tracing)
if err != nil {
Expand Down

0 comments on commit 26b28ad

Please sign in to comment.