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
Was using the Python SDK to implement basic User Management features following the Quickstart. Was attempting to use the Async client given the auth living FastAPI server
But I get the intended NotImplementedError when trying to use the async def load_sealed_session method:
My assumption is that I instantiate either the sync client or the async client and use it throughout.
Given that load_sealed_session method is part of the standard code paths to check authentication states, should I not use the Async client at all till the support is completed?
The text was updated successfully, but these errors were encountered:
Was using the Python SDK to implement basic User Management features following the Quickstart. Was attempting to use the Async client given the auth living FastAPI server
But I get the intended
NotImplementedError
when trying to use theasync def load_sealed_session
method:My assumption is that I instantiate either the sync client or the async client and use it throughout.
Given that
load_sealed_session
method is part of the standard code paths to check authentication states, should I not use the Async client at all till the support is completed?The text was updated successfully, but these errors were encountered: