Skip to content

Commit

Permalink
Pass right parameters to host.Log (#1807)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailshilkov committed Nov 19, 2021
1 parent d25bd4c commit af0f4a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## HEAD (Unreleased)

- Remove unused helm ReleaseType type (https://github.com/pulumi/pulumi-kubernetes/pull/1805)
- Fix Helm Release Panic "Helm uninstall returned information" (https://github.com/pulumi/pulumi-kubernetes/pull/1807)

## 3.10.0 (November 12, 2021)

Expand Down
2 changes: 1 addition & 1 deletion provider/pkg/provider/helm_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ func (r *helmReleaseProvider) Delete(ctx context.Context, req *pulumirpc.DeleteR
}

if res.Info != "" {
_ = r.host.Log(context.Background(), diag.Warning, "Helm uninstall returned information: %q", res.Info)
_ = r.host.Log(context.Background(), diag.Warning, urn, fmt.Sprintf("Helm uninstall returned information: %q", res.Info))
}
return &pbempty.Empty{}, nil
}
Expand Down

0 comments on commit af0f4a7

Please sign in to comment.