Skip to content

Commit 1424b50

Browse files
committed
comments
1 parent 98195e9 commit 1424b50

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

sentry_sdk/integrations/stdlib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,8 @@ def close(self: "HTTPResponse") -> None:
461461

462462
HTTPConnection.putrequest = putrequest # type: ignore[method-assign]
463463
# patch `HTTPConnection.putrequest()` first. urllib3 < 1.25.9 inherits it, so
464-
# wrapping AWS classes first would skip URL and span recording.
464+
# wrapping AWS classes first would skip URL and span recording. Once boto3-v1.16.63
465+
# support is dropped, we won't have to worry about this issue.
465466
_patch_aws_connection()
466467
HTTPConnection.getresponse = getresponse # type: ignore[method-assign]
467468
HTTPResponse.read = read # type: ignore[method-assign]

tests/integrations/boto3/test_trace_propagation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def _start_server():
3737

3838
@pytest.mark.parametrize("span_streaming", [False, True])
3939
def test_botocore_merges_propagation_before_sigv4_signing(sentry_init, span_streaming):
40-
"""Merge `sentry-trace` and `baggage` before SigV4 signs them."""
4140
sentry_init(
4241
traces_sample_rate=1.0,
4342
trace_lifecycle="stream" if span_streaming else "static",

0 commit comments

Comments
 (0)