You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(postgresql_grant): getting stuck on refreshing (#351)
This change fixes terraform refresh getting stuck forever on
postgresql_grant schema when provider connection database is the same as
the one we are trying to read schema information from. Until now the
issue could be reproduced only on RDS (PostgreSQL 14.7).
Fixes#335
Remove test coverage for #178
* Using terratest just wasn't working out - it isn't designed for testing a provider
* github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource looks like the right option but I don't have the time to learn it right now.
fix: confirm initial database connectivity (#314)
- adding db.Ping() call to confirm actual connection to the database to
report issues with connectivity as early as possible
Co-authored-by: Kyle Johnson <kjohnson@gnulnx.net>