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
It is not currently possible to connect to RDS Proxy using pypgstac due to its use of command-line parameters. Connection attempts fail with
connection to server at "...rds.amazonaws.com" (IP), port 5432 failed: FATAL: Feature not supported: RDS Proxy currently doesn’t support command-line options.
I've also seen a similar error when working with pgbouncer.
I had to override the PgstacDB class with the following to make this work
* Change directory structure to put pypgstac and pgstac under /src
* switch pypgstac to use hatch
* move migrations to the pgstac tree
* make symlink in pypgstac for migrations
* move pgstac.sql to src/pgstac/
* update scripts and docker setup
* Cleanup unused files. Adjust tests to work with new scripts
* update sql with partitioning rework and maintenance tooling
* fix: allow missing aws credential in pre-commit
* switch from methodtools to cachetools, remove commented out code
* add fix for #156
---------
Co-authored-by: Matt McFarland <mmcfarland@microsoft.com>
It is not currently possible to connect to RDS Proxy using pypgstac due to its use of command-line parameters. Connection attempts fail with
I've also seen a similar error when working with pgbouncer.
I had to override the
PgstacDB
class with the following to make this workPerhaps there can be a configuration option, or a variation on the above, to avoid always attempting to send command-line options.
The text was updated successfully, but these errors were encountered: