File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -385,11 +385,11 @@ def _parse_high_64_bits(trace_tags: str) -> str:
385385
386386def _generate_sfn_parent_id (context : dict ) -> int :
387387 """
388- The upstream Step Function can propagate its execution context to downstream Lambdas. The Lambda can use these
389- details to share the same traceID and infer its parent's spanID.
388+ The upstream Step Function can propagate its execution context to downstream Lambdas. The
389+ Lambda can use these details to share the same traceID and infer its parent's spanID.
390390
391- Excluding redriveCount when its 0 to account for cases where customers are using an old version of the Lambda layer
392- that doesn't use this value for its parentID generation.
391+ Excluding redriveCount when its 0 to account for cases where customers are using an old
392+ version of the Lambda layer that doesn't use this value for its parentID generation.
393393 """
394394 execution_id = context .get ("Execution" ).get ("Id" )
395395 redrive_count = context .get ("Execution" ).get ("RedriveCount" )
You can’t perform that action at this time.
0 commit comments