1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-02-13 13:48:51 +02:00

fix trace

This commit is contained in:
Windfarer 2019-10-13 10:00:57 +08:00
parent 11051d3bb4
commit bf7d69c540

View File

@ -122,9 +122,7 @@ func (t *traceConn) Receive() (reply interface{}, err error) {
func (t *traceConn) WithContext(ctx context.Context) Conn {
t.Conn = t.Conn.WithContext(ctx)
if root, ok := trace.FromContext(ctx); ok {
t.tr = root
}
t.tr, _ = trace.FromContext(ctx)
return t
}