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 8658dea commit 3eccb20Copy full SHA for 3eccb20
datadog_lambda/tracing.py
@@ -386,7 +386,7 @@ def extract_context_from_step_functions(event, lambda_context):
386
if "_datadog" in event:
387
# use the trace ID from the top-most parent when it exists
388
trace_header = event.get("_datadog")
389
- trace_id = trace_header.get(TraceHeader.TRACE_ID)
+ trace_id = int(trace_header.get(TraceHeader.TRACE_ID))
390
tags = trace_header.get(TraceHeader.TAGS)
391
for tag in tags.split(","):
392
tag_key, tag_val = tag.split("=")
0 commit comments