We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b0313b commit cfbb1f8Copy full SHA for cfbb1f8
datadog_lambda/tracing.py
@@ -69,13 +69,13 @@
69
70
71
def _dsm_set_checkpoint(context_json, event_type, arn):
72
- if not isinstance(context_json, dict):
+ if not config.data_streams_enabled:
73
return
74
75
- if context_json and PROPAGATION_KEY_BASE_64 not in context_json:
+ if not isinstance(context_json, dict):
76
77
78
- if not config.data_streams_enabled:
+ if context_json and PROPAGATION_KEY_BASE_64 not in context_json:
79
80
81
try:
0 commit comments