Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add identity details to error messages #987

Merged
merged 1 commit into from
Jun 16, 2021
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions vault/data_identity_entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,16 @@ func identityEntityLookup(client *api.Client, data map[string]interface{}) (*api
resp, err := client.Logical().Write("identity/lookup/entity", data)

if err != nil {
return nil, fmt.Errorf("Error reading Identity Entity: %s", err)
return nil, fmt.Errorf("Error reading Identity Entity '%v': %s", data, err)
}

if resp == nil {
return nil, fmt.Errorf("no Identity Entity found")
return nil, fmt.Errorf("no Identity Entity found '%v'", data)
}

_, ok := resp.Data["id"]
if !ok {
return nil, fmt.Errorf("no Identity Entity found")
return nil, fmt.Errorf("no Identity Entity found '%v'", data)
}

return resp, nil
Expand Down
6 changes: 3 additions & 3 deletions vault/data_identity_group.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,16 @@ func identityGroupLookup(client *api.Client, data map[string]interface{}) (*api.
resp, err := client.Logical().Write("identity/lookup/group", data)

if err != nil {
return nil, fmt.Errorf("Error reading Identity Group: %s", err)
return nil, fmt.Errorf("Error reading Identity Group '%v': %s", data, err)
}

if resp == nil {
return nil, fmt.Errorf("no Identity Group found")
return nil, fmt.Errorf("no Identity Group found '%v'", data)
}

_, ok := resp.Data["id"]
if !ok {
return nil, fmt.Errorf("no Identity Group found")
return nil, fmt.Errorf("no Identity Group found '%v'", data)
}

return resp, nil
Expand Down