questdb / py-questdb-client

Python client for QuestDB InfluxDB Line Protocol
https://py-questdb-client.readthedocs.io
Apache License 2.0
49 stars 7 forks source link

feat: Sender(..., tls=True) now also uses OS-provided certificate store. #55

Closed amunra closed 7 months ago

amunra commented 7 months ago

More TLS connection options and new default

To connect the sender with TLS enabled one would typically use Sender(..., tls=True). This connection parameter previously used root certificates sourced from the webpki-roots Rust crate. With this change, tls=True will also use the certificates stored on the OS certificate root store.

amunra commented 7 months ago

Depends on: https://github.com/questdb/c-questdb-client/pull/47