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
Add Feature#around_request hook for wrapping the HTTP exchange lifecycle
Add an around-style hook that wraps the per-attempt send/receive cycle,
with the request flowing through the feature chain. This enables
features like instrumentation to use ensure-based cleanup for guaranteed
span closing on both success and failure.
Rewrite the instrumentation feature to use around_request, replacing the
separate on_request/wrap_response pair with a single call to
instrumenter.instrument, which naturally provides paired start/finish
via its own ensure block.
0 commit comments