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 50bfb69 commit 02e812cCopy full SHA for 02e812c
1 file changed
tests/framework_grpc/test_distributed_tracing.py
@@ -129,8 +129,9 @@ def _test():
129
# The external span should be the parent
130
exact_intrinsics["guid"] = w3c_parent["id"]
131
132
- # Check that tracestate and traceparent agree on the span id / sampled flag
133
- assert nr_tracestate["id"] == w3c_parent["id"]
+ # Check that traceparent contains the span id
+ assert w3c_parent["id"]
134
+ # Check that tracestate and traceparent agree on the sampled flag
135
assert nr_tracestate["sa"] == w3c_parent["sa"]
136
137
_test()
0 commit comments