Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions requirements-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
beautifulsoup4>=4.7.1
boto3>=1.34.128
botocore>=1.34.8
brotli>=1.1.0
cachetools>=5
celery>=5
click>=8.1
Expand Down Expand Up @@ -70,7 +71,7 @@ sentry-ophio==1.0.0
sentry-protos>=0.1.26
sentry-redis-tools>=0.1.7
sentry-relay>=0.9.2
sentry-sdk>=2.17.0
sentry-sdk[http2]>=2.17.0
slack-sdk>=3.27.2
snuba-sdk>=3.0.43
simplejson>=3.17.6
Expand All @@ -85,7 +86,6 @@ typing-extensions>=4.9.0
ua-parser>=0.10.0
unidiff>=0.7.4
urllib3[brotli]>=2.2.2
brotli>=1.1
pyuwsgi==2.0.27.post1
zstandard>=0.18.0
sentry-usage-accountant==0.0.10
Expand Down
3 changes: 3 additions & 0 deletions requirements-dev-frozen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ grpc-stubs==1.53.0.5
grpcio==1.60.1
grpcio-status==1.60.1
h11==0.13.0
h2==4.1.0
hiredis==2.3.2
honcho==2.0.0
hpack==4.0.0
httpcore==1.0.2
httpx==0.25.2
hyperframe==6.0.1
identify==2.6.1
idna==3.7
inflection==0.5.1
Expand Down
3 changes: 3 additions & 0 deletions requirements-frozen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,12 @@ grpc-stubs==1.53.0.5
grpcio==1.60.1
grpcio-status==1.60.1
h11==0.14.0
h2==4.1.0
hiredis==2.3.2
hpack==4.0.0
httpcore==1.0.2
httpx==0.25.2
hyperframe==6.0.1
idna==3.7
inflection==0.5.1
iso3166==2.1.1
Expand Down
3 changes: 3 additions & 0 deletions src/sentry/utils/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,9 @@ def _get_sdk_options() -> tuple[SdkConfig, Dsns]:
sdk_options["release"] = (
f"backend@{sdk_options['release']}" if "release" in sdk_options else None
)
sdk_options.setdefault("_experiments", {}).update(
transport_http2=True,
)

# Modify SENTRY_SDK_CONFIG in your deployment scripts to specify your desired DSN
dsns = Dsns(
Expand Down
Loading