feat: add async HTTP transport foundation (Stage 0)#1523
Open
feat: add async HTTP transport foundation (Stage 0)#1523
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Lays the foundation for async support in the Python SDK as the first stage of the async rollout plan.
future_utils.py— three transparent helpers:then(result_or_coro, fn)— appliesfnimmediately on a sync result, or returns an awaitable that applies it after the coroutine resolveswrap(result, as_awaitable)— wraps a sync value in a coroutine when neededresolve(obj)— awaits if async, returns as-is if syncHTTPClient— async execution path alongside the existing sync path:httpx.AsyncClientinstance created whenasync_mode_experimental=True_async_execute_with_retrymirrors the sync retry loop usingasyncio.sleepget/post/put/patch/delete) acceptasync_mode: bool = False; passingTruedelegates to the async counterpart and returns a coroutineDescopeClient.__init__— acceptsasync_mode_experimentalvia**kwargsand forwards it to both HTTP client instances, ready for the eventual global-rollout stageSync callers are completely unaffected — all existing tests pass unchanged.
Related
descope/etc#5922