We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ba3e76 commit 0d78f92Copy full SHA for 0d78f92
1 file changed
datadog_lambda/durable.py
@@ -25,11 +25,6 @@ def _parse_durable_execution_arn(arn):
25
26
27
def extract_durable_function_tags(event):
28
- """
29
- Extracts durable function tags from the Lambda event payload.
30
- Returns a dict with durable function tags, or an empty dict if the event
31
- is not a durable function invocation.
32
33
if not isinstance(event, dict):
34
return {}
35
@@ -53,10 +48,6 @@ def extract_durable_function_tags(event):
53
48
54
49
55
50
def extract_durable_execution_status(response, event):
56
57
- Extract durable function execution status from handler response.
58
- Returns the status string if valid, None otherwise.
59
60
51
if not isinstance(event, dict) or "DurableExecutionArn" not in event:
61
52
return None
62
if not isinstance(response, dict):
0 commit comments