Causally, not casually (#2916)

This commit is contained in:
Phillip Carter 2023-06-27 12:51:34 -07:00 committed by GitHub
parent 2cada2441d
commit 6f0a85b450
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ with tracer.start_as_current_span("span-1"):
with tracer.start_as_current_span("span-2", links=[link_from_span_1]): with tracer.start_as_current_span("span-2", links=[link_from_span_1]):
# Do something that 'span-2' tracks. # Do something that 'span-2' tracks.
# The link in 'span-2' is casually associated it with the 'span-1', # The link in 'span-2' is causally associated it with the 'span-1',
# but it is not a child span. # but it is not a child span.
pass pass
``` ```