Commit a9b17361 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed a context propagation bug.

parent 05bfe267
......@@ -180,7 +180,7 @@ func (o *commonOp) init(
// Set up a trace span for this op.
var reportForTrace reqtrace.ReportFunc
o.ctx, reportForTrace = reqtrace.StartSpan(ctx, o.op.ShortDesc())
o.ctx, reportForTrace = reqtrace.StartSpan(o.ctx, o.op.ShortDesc())
// When the op is finished, report to both reqtrace and the connection.
prevFinish := o.finished
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment