Skip to content

Commit ab577dc

Browse files
committed
forgot to save a file before commit and push
1 parent 4924648 commit ab577dc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

sentry_sdk/transport.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ def _make_pool(
10831083
return httpcore.ConnectionPool(**opts)
10841084

10851085

1086-
class EnvelopePrinterTransport(Transport):
1086+
class _EnvelopePrinterTransport(Transport):
10871087
"""Wraps another transport, printing envelope contents to the SDK debug logger before sending."""
10881088

10891089
def __init__(self, transport: "Transport") -> None:
@@ -1240,6 +1240,6 @@ def make_transport(options: "Dict[str, Any]") -> "Optional[Transport]":
12401240
if transport is not None and os.environ.get(
12411241
"SENTRY_PRINT_ENVELOPES", ""
12421242
).lower() in ("1", "true", "yes"):
1243-
transport = EnvelopePrinterTransport(transport)
1243+
transport = _EnvelopePrinterTransport(transport)
12441244

12451245
return transport

0 commit comments

Comments
 (0)