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 c601215 commit 5ed5d0fCopy full SHA for 5ed5d0f
sentry_sdk/transport.py
@@ -806,7 +806,7 @@ def make_transport(options):
806
# We default to using HTTP2 transport if the user also has the required h2
807
# library installed (through the subclass check). The reason is h2 not being
808
# available on py3.7 which we still support.
809
- use_http2_transport = options.get("http2") != False and not issubclass(
+ use_http2_transport = options.get("http2") is not False and not issubclass(
810
Http2Transport, HttpTransport
811
)
812
0 commit comments