Skip to content

Commit caa7e4d

Browse files
committed
fix: ensure the start_ns of a function url inferred span is an int
1 parent 3192756 commit caa7e4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datadog_lambda/tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,7 +859,7 @@ def create_inferred_span_from_lambda_function_url_event(event, context):
859859
InferredSpanInfo.set_tags(tags, tag_source="self", synchronicity="sync")
860860
if span:
861861
span.set_tags(tags)
862-
span.start_ns = int(request_time_epoch) * 1e6
862+
span.start_ns = int(request_time_epoch * 1e6)
863863
return span
864864

865865

0 commit comments

Comments
 (0)