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

handling the error #653

Merged
merged 3 commits into from
Jan 15, 2024
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
5 changes: 4 additions & 1 deletion nutanix/data_source_nutanix_ndb_databases.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ func dataSourceNutanixEraDatabaseIntancesRead(ctx context.Context, d *schema.Res
if dbEng, ok := d.GetOk("database_type"); ok {
// todo : when era have query params for db egine type call , API here
// filter the database based on db engine type provided
respon, _ := conn.Service.ListDatabaseInstance(ctx)
respon, er := conn.Service.ListDatabaseInstance(ctx)
if er != nil {
return diag.FromErr(er)
}
resp, err = filterDatabaseBasedOnDatabaseEngine(respon, dbEng.(string))
if err != nil {
return diag.FromErr(err)
Expand Down
Loading