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
{{ message }}
This repository was archived by the owner on Apr 3, 2026. It is now read-only.
We observed that using the Client with connection parameters like this Client.open(f"dbname='stac' user='{username}' password='{password}' host='{host}' port=5432 sslmode='require'")
on a database with ssl enabled, the connection is not established. The error message is
PgstacError: postgres: error performing TLS handshake: no TLS implementation configured
Using psycopg2 with the same connection parameters works fine. The connection is established and a query is executed successfully.
We tested with this 4976448
against db running pgstac:v0.9.1
Hi all,
We observed that using the Client with connection parameters like this
Client.open(f"dbname='stac' user='{username}' password='{password}' host='{host}' port=5432 sslmode='require'")on a database with ssl enabled, the connection is not established. The error message is
PgstacError: postgres: error performing TLS handshake: no TLS implementation configuredUsing psycopg2 with the same connection parameters works fine. The connection is established and a query is executed successfully.
We tested with this 4976448
against db running pgstac:v0.9.1