File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -385,11 +385,12 @@ def _parse_high_64_bits(trace_tags: str) -> str:
385385
386386def _generate_sfn_parent_id (context : dict ) -> int :
387387 """
388- Generates a stable parent span ID for a downstream Lambda invoked by a Step Function. The upstream Step Function
389- execution context is used to infer the parent's span ID, ensuring trace continuity.
388+ Generates a stable parent span ID for a downstream Lambda invoked by a Step Function. The
389+ upstream Step Function execution context is used to infer the parent's span ID, ensuring trace
390+ continuity.
390391
391- `RetryCount` and `RedriveCount` are appended only when nonzero to maintain compatibility with older Lambda
392- layers that did not include these fields
392+ `RetryCount` and `RedriveCount` are appended only when nonzero to maintain compatibility with
393+ older Lambda layers that did not include these fields
393394 """
394395 execution_id = context .get ("Execution" ).get ("Id" )
395396 retry_count = context .get ("Execution" ).get ("RetryCount" , 0 )
You can’t perform that action at this time.
0 commit comments