File tree 2 files changed +14
-6
lines changed
2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 35
35
from .services .sqs import inject_trace_to_sqs_or_sns_batch_message
36
36
from .services .sqs import inject_trace_to_sqs_or_sns_message
37
37
from .services .sqs import patched_sqs_api_call
38
- from .services .stepfunctions import inject_trace_to_stepfunction_input , patched_stepfunction_api_call
38
+ from .services .stepfunctions import inject_trace_to_stepfunction_input
39
+ from .services .stepfunctions import patched_stepfunction_api_call
39
40
from .utils import inject_trace_to_client_context
40
41
from .utils import inject_trace_to_eventbridge_detail
41
42
from .utils import set_patched_api_call_span_tags
Original file line number Diff line number Diff line change 1
1
import json
2
+ from typing import Any # noqa:F401
3
+ from typing import Dict # noqa:F401
2
4
3
5
import botocore .exceptions
4
6
7
+ from ddtrace import Span # noqa:F401
8
+ from ddtrace import config
9
+ from ddtrace .ext import http
5
10
from ddtrace .propagation .http import HTTPPropagator
6
- from .. utils import set_patched_api_call_span_tags , set_response_metadata_tags
11
+
7
12
from ....ext import SpanTypes
8
13
from ....internal .logger import get_logger
9
- from typing import Any , Dict # noqa:F401
10
- from ddtrace import Span # noqa:F401
11
- from ....internal .schema import schematize_service_name , SpanDirection , schematize_cloud_messaging_operation
12
- from ddtrace import config
14
+ from ....internal .schema import SpanDirection
15
+ from ....internal .schema import schematize_cloud_messaging_operation
16
+ from ....internal .schema import schematize_service_name
17
+ from ..utils import set_patched_api_call_span_tags
18
+ from ..utils import set_response_metadata_tags
19
+
13
20
14
21
log = get_logger (__name__ )
15
22
You can’t perform that action at this time.
0 commit comments