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
Currently, there is no possibility of configuring httpx.Client when initializing the client using new_client function. The purpose of this issue to add the configuration ability to the new_client function so it would look like this:
What is the status of this and the now-closed PR #96? We are trying to use Connect to manage secrets and integrate 1Password, but we have a private Certificate Authority. The Connect server has no issues, but even with the root CA cert installed on the hosts, new_client throws an error stating it can't verify the certificate. We're using the PR for now but would prefer to see this incorporated into an actual release so we aren't tied to the PR.
Currently, there is no possibility of configuring
httpx.Client
when initializing the client usingnew_client
function. The purpose of this issue to add the configuration ability to thenew_client
function so it would look like this:The
config
parameter should be of typehttpx.BaseClient
so we can pass any options thathttpx.Client
andhttpx.AsyncClient
have.The text was updated successfully, but these errors were encountered: