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
feat: DispatchContext.request_id; drop RequestId arg from transport_builder
request_id is the wire-format correlation id (JSON-RPC message id; None for
notifications and for dispatchers without one). Lives on DispatchContext
because it's wire-format-shaped (dispatcher domain), not transport-shaped.
ServerRunner._make_context will read it to populate
ServerRequestContext.request_id.
transport_builder no longer takes RequestId: that arg existed so the builder
could put the id on a TransportContext subclass, which is now redundant with
dctx.request_id. Nothing read it.
0 commit comments