Skip to content

Commit

Permalink
Remove hashicups.
Browse files Browse the repository at this point in the history
  • Loading branch information
steveworley committed Jan 19, 2024
1 parent f193097 commit ecb2e2a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions internal/provider/project_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (r *projectResource) Configure(_ context.Context, req resource.ConfigureReq
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down Expand Up @@ -270,7 +270,7 @@ func (r *projectResource) Update(ctx context.Context, req resource.UpdateRequest

if err != nil {
resp.Diagnostics.AddError(
"Error Updating HashiCups Order",
"Error Updating Quant Projet",
"Could not update order, unexpected error: "+err.Error(),
)
}
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/rule_auth_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (r *ruleAuth) Configure(_ context.Context, req resource.ConfigureRequest, r
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/rule_custom_response_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (r *ruleCustomResponse) Configure(_ context.Context, req resource.Configure
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/rule_headers_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (r *ruleHeaders) Configure(_ context.Context, req resource.ConfigureRequest
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/rule_proxy_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func (r *ruleProxy) Configure(_ context.Context, req resource.ConfigureRequest,
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/rule_redirect_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (r *ruleRedirectResource) Configure(_ context.Context, req resource.Configu
if !ok {
resp.Diagnostics.AddError(
"Unexpected Data Source Configure Type",
fmt.Sprintf("Expected *hashicups.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
fmt.Sprintf("Expected *quant.Client, got: %T. Please report this issue to the provider developers.", req.ProviderData),
)

return
Expand Down

0 comments on commit ecb2e2a

Please sign in to comment.