From a9b17361e8cd7c9f0e57873782ac14ccd2f6eb82 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 5 May 2015 14:49:59 +1000 Subject: [PATCH] Fixed a context propagation bug. --- fuseops/common_op.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuseops/common_op.go b/fuseops/common_op.go index 80325e0..e62f4ba 100644 --- a/fuseops/common_op.go +++ b/fuseops/common_op.go @@ -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