attach context with span to *http.Request

This commit is contained in:
bergquist 2017-09-12 10:26:24 +02:00
parent 3c8133aa4b
commit d55b49b7b7

View File

@ -22,7 +22,7 @@ func RequestTracing() macaron.Handler {
defer span.Finish()
ctx := opentracing.ContextWithSpan(req.Context(), span)
req = req.WithContext(ctx)
c.Req.Request = req.WithContext(ctx)
c.Next()