We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proposal: Possibility to pass custom ssl cert like in the old API: https://github.com/influxdata/influxdb-python/blob/master/influxdb/client.py#L108
Current behavior: Monkey patching
class _CustomConfiguration(client.influxdb_client._Configuration): def __init__(self): super().__init__() self.ssl_ca_cert = "custom_path" client.influxdb_client._Configuration = _CustomConfiguration
Desired behavior: Possibility to pass ssl cert
Alternatives considered: Monkey patching
Use case: Sitting behind a company proxy that requires you to use a custom CA
The text was updated successfully, but these errors were encountered:
Hi @PhilippSelenium,
thanks for your proposal. I will take a look ASAP.
Regards
Sorry, something went wrong.
I've prepared PR #158.
If you would like to test it then install client via:
pip install git+https://github.com/influxdata/influxdb-client-python.git@feat/cert-configuration
Thanks a lot for the quick fix. Works great!
You are welcome.
Successfully merging a pull request may close this issue.
Proposal:
Possibility to pass custom ssl cert like in the old API: https://github.com/influxdata/influxdb-python/blob/master/influxdb/client.py#L108
Current behavior:
Monkey patching
Desired behavior:
Possibility to pass ssl cert
Alternatives considered:
Monkey patching
Use case:
Sitting behind a company proxy that requires you to use a custom CA
The text was updated successfully, but these errors were encountered: