Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Fix typo in ApplyResourceChange #220

Merged
merged 1 commit into from
Jun 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions provider/apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func (s *RawProviderServer) ApplyResourceChange(ctx context.Context, req *tfprot
resp.Diagnostics = append(resp.Diagnostics,
&tfprotov5.Diagnostic{
Severity: tfprotov5.DiagnosticSeverityError,
Summary: "Failed to retrieve Kubrentes dynamic client during apply",
Summary: "Failed to retrieve Kubernetes dynamic client during apply",
Detail: err.Error(),
})
return resp, nil
Expand All @@ -67,7 +67,7 @@ func (s *RawProviderServer) ApplyResourceChange(ctx context.Context, req *tfprot
resp.Diagnostics = append(resp.Diagnostics,
&tfprotov5.Diagnostic{
Severity: tfprotov5.DiagnosticSeverityError,
Summary: "Failed to retrieve Kubrentes RESTMapper client during apply",
Summary: "Failed to retrieve Kubernetes RESTMapper client during apply",
Detail: err.Error(),
})
return resp, nil
Expand Down