diff options
author | 2022-09-30 21:55:47 +0400 | |
---|---|---|
committer | 2022-09-30 21:56:14 +0400 | |
commit | 802d85c33eb22ec6fd3dd474949054cd87808fa7 (patch) | |
tree | e2ee4205af191f9b271c5a57f868a9e5f5d3e006 | |
parent | Fix Failing Pre-Commit Hook (diff) |
Downgrade sentry-sdk To 1.9.8
Sentry 1.9.9 seems to be highly broken, with issues such as not being
able to install on python 3.9, and more relevantly to this project major
performance slowdowns on certain requests.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | poetry.lock | 8 | ||||
-rw-r--r-- | pyproject.toml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/poetry.lock b/poetry.lock index f27400a9..30b9500b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -725,7 +725,7 @@ idna2008 = ["idna"] [[package]] name = "sentry-sdk" -version = "1.9.9" +version = "1.9.8" description = "Python client for Sentry (https://sentry.io)" category = "main" optional = false @@ -909,7 +909,7 @@ brotli = ["Brotli"] [metadata] lock-version = "1.1" python-versions = "3.10.*" -content-hash = "f7f16c0f23efb7dc3772c7cef2a2dd00d761754c6b145e826a26e5c664baf39c" +content-hash = "f162c449236cce4e5586db73bc5fd747a3e9805928ce71ab033db3af7c7de82b" [metadata.files] anyio = [ @@ -1422,8 +1422,8 @@ rfc3986 = [ {file = "rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835"}, ] sentry-sdk = [ - {file = "sentry-sdk-1.9.9.tar.gz", hash = "sha256:d6c71d2f85710b66822adaa954af7912bab135d6c85febd5b0f3dfd4ab37e181"}, - {file = "sentry_sdk-1.9.9-py2.py3-none-any.whl", hash = "sha256:ef925b5338625448645a778428d8f22a3d17de8b28cc8e6fba60b93393ad86fe"}, + {file = "sentry-sdk-1.9.8.tar.gz", hash = "sha256:ef4b4d57631662ff81e15c22bf007f7ce07c47321648c8e601fbd22950ed1a79"}, + {file = "sentry_sdk-1.9.8-py2.py3-none-any.whl", hash = "sha256:7378c08d81da78a4860da7b4900ac51fef38be841d01bc5b7cb249ac51e070c6"}, ] setuptools = [ {file = "setuptools-65.4.1-py3-none-any.whl", hash = "sha256:1b6bdc6161661409c5f21508763dc63ab20a9ac2f8ba20029aaaa7fdb9118012"}, diff --git a/pyproject.toml b/pyproject.toml index c7f88891..8a098a85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ whitenoise = "6.2.0" httpx = "0.23.0" pyyaml = "6.0" gunicorn = "20.1.0" -sentry-sdk = "1.9.9" +sentry-sdk = "1.9.8" markdown = "3.4.1" python-frontmatter = "1.0.0" django-prometheus = "2.2.0" |