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
Right now the server can use RequestContextManager to create a new context when it get a request. That way, the context's span will be used by the http clients it uses and the trace will be passed to the servers that it calls. But no reason it won't happen in http_server's before_request.
That way, when a server sends request to another server using an http client, the same trace of the incoming request will be used by the next servers, and the server doesn't need to create the context itself.
The text was updated successfully, but these errors were encountered:
Right now the server can use
RequestContextManager
to create a new context when it get a request. That way, the context's span will be used by the http clients it uses and the trace will be passed to the servers that it calls. But no reason it won't happen in http_server'sbefore_request
.That way, when a server sends request to another server using an http client, the same trace of the incoming request will be used by the next servers, and the server doesn't need to create the context itself.
The text was updated successfully, but these errors were encountered: