We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b18526b commit f456f5bCopy full SHA for f456f5b
samples/tracing/workflow.go
@@ -67,7 +67,7 @@ func Activity1(ctx context.Context, a, b int) (int, error) {
67
ctx, span := otel.Tracer("activity").Start(ctx, "Custom Activity1 span")
68
defer span.End()
69
70
- ctx, span = otel.Tracer("activity").Start(ctx, "Another one")
+ _, span = otel.Tracer("activity").Start(ctx, "Another one")
71
72
73
time.Sleep(300 * time.Millisecond)
0 commit comments