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
Our clickhouse configured to secured connection with ssl certificates. Something like:
<config> <openSSL> <client> ... <caConfig>...</caConfig> <certificateFile>...</certificateFile> <privateKeyFile>...</privateKeyFile> <verificationMode>strict</verificationMode> </client> </openSSL> <config>
This can be done with HttpsConnectionContext . https://pekko.apache.org/docs/pekko-http/current/client-side/client-https-support.html But there no ability to pass context to Http.superPool(...). This code hardcoded in ClickHouseExecutor. For example elastic client have ability to configure ssl context. Philippus/elastic4s#2712
HttpsConnectionContext
Http.superPool(...)
ClickHouseExecutor
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
@sjoerdmulder we open mr. pls check it
No branches or pull requests
Our clickhouse configured to secured connection with ssl certificates. Something like:
This can be done with
HttpsConnectionContext
. https://pekko.apache.org/docs/pekko-http/current/client-side/client-https-support.html But there no ability to pass context toHttp.superPool(...)
. This code hardcoded inClickHouseExecutor
. For example elastic client have ability to configure ssl context. Philippus/elastic4s#2712The text was updated successfully, but these errors were encountered: