Skip to content

Commit

Permalink
handling the error (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishekism9450 authored Jan 15, 2024
1 parent 1dfdba3 commit d4a4982
Showing 1 changed file with 4 additions and 1 deletion.
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

0 comments on commit d4a4982

Please sign in to comment.