File tree 1 file changed +5
-4
lines changed
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:
385
385
386
386
def _generate_sfn_parent_id (context : dict ) -> int :
387
387
"""
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.
390
391
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
393
394
"""
394
395
execution_id = context .get ("Execution" ).get ("Id" )
395
396
retry_count = context .get ("Execution" ).get ("RetryCount" , 0 )
You can’t perform that action at this time.
0 commit comments