Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit e0d0043

Browse files
author
Junchao Wu
committed
Fix the bug that span should always submit if trace flag enabled and
parent_trace_id isn't 0.
1 parent 4f129cc commit e0d0043

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tchannel/zipkin/zipkin_trace.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ def before_send_request(self, request):
6565
if not request.tracing.traceflags:
6666
return
6767

68-
if not self._lucky(request.tracing.trace_id):
68+
if not request.tracing.parent_span_id and not self._lucky(
69+
request.tracing.trace_id
70+
):
6971
# disable trace
7072
request.tracing.traceflags = False
7173
return

0 commit comments

Comments
 (0)