Skip to content

Commit dad4f3d

Browse files
committed
Fix OpenTracing example
1 parent 80a130c commit dad4f3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import opentracing
5858

5959
parent_span = opentracing.tracer.start_span(operation_name="asteroid")
6060
# ... work
61-
child_span = ot.tracer.start_span(operation_name="spacedust", child_of=parent_span)
61+
child_span = opentracing.tracer.start_span(operation_name="spacedust", child_of=parent_span)
6262
child_span.set_tag(ext.SPAN_KIND, ext.SPAN_KIND_RPC_CLIENT)
6363
# ... work
6464
child_span.finish()

0 commit comments

Comments
 (0)