Skip to content

Commit

Permalink
Fix the continued call within the createLocalSpan method.
Browse files Browse the repository at this point in the history
  • Loading branch information
gzlicanyi committed May 13, 2024
1 parent d751b53 commit e5d4a48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public static AbstractSpan createLocalSpan(String operationName, ContextSnapshot

AbstractSpan span = context.createLocalSpan(operationName);
if (snapshot != null) {
context.continued(snapshot);
continued(snapshot);
}
return span;
}
Expand Down

0 comments on commit e5d4a48

Please sign in to comment.