You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: instrumentation/lettuce/lettuce-5.1/library/src/main/java/io/opentelemetry/instrumentation/lettuce/v5_1/OpenTelemetryTracing.java
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -332,10 +332,8 @@ public synchronized Tracer.Span start() {
332
332
span = spanBuilder.startSpan();
333
333
spanStartNanos = System.nanoTime();
334
334
// Note: Span name cannot be set on SpanBuilder because it's set during
335
-
// tracer.spanBuilder(name)
336
-
// call in nextSpan(), and we don't know the actual command name at that point. We have to
337
-
// update
338
-
// the name after the span starts.
335
+
// tracer.spanBuilder(name) call in nextSpan(), and we don't know the actual command name at
336
+
// that point. We have to update the name after the span starts.
0 commit comments