Skip to content

Commit

Permalink
Update plugin/plugin.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Ompragash authored Nov 17, 2024
1 parent f46afbf commit c54b6d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ func lookupTenant(tenant string) (*Tenant, error) {
}
defer res.Body.Close()
if res.StatusCode > 299 {
return nil, fmt.Errorf("errorCode %d", res.StatusCode)
return nil, fmt.Errorf("Error code %d", res.StatusCode)
}
out := new(Tenant)
err = json.NewDecoder(res.Body).Decode(out)
Expand Down

0 comments on commit c54b6d3

Please sign in to comment.