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
Because the SyncFunctionsClient verify argument is cast to bool, it's not possible to pass down an SSL Context to the underlying httpx.Client.
This can be problematic when working with custom certificates in corporate environments.
We're working on a better option of allowing you to pass your own httpx client so that you can access all the params directly and customize your httpx client to it's fullest without any limitations. #201
Hello everyone 👋
Because the
SyncFunctionsClient
verify argument is cast tobool
, it's not possible to pass down an SSL Context to the underlyinghttpx.Client
.This can be problematic when working with custom certificates in corporate environments.
SyncFunctionsClient
functions-py/supabase_functions/_sync/functions_client.py
Line 36 in 2675964
httpx.Client
https://github.com/encode/httpx/blob/26d48e0634e6ee9cdc0533996db289ce4b430177/httpx/_client.py#L646
proposed fix
A trivial fix would be to remove the
bool()
cast. I'll open a PR for discussion.Cheers,
Andreas
The text was updated successfully, but these errors were encountered: