Remove Sentry
This commit is contained in:
parent
122745b386
commit
3cc064859e
@ -12,8 +12,6 @@ from ics.alarm import DisplayAlarm
|
|||||||
from oauthlib.oauth2 import TokenExpiredError
|
from oauthlib.oauth2 import TokenExpiredError
|
||||||
from quart import Quart, redirect, render_template, request, session, url_for
|
from quart import Quart, redirect, render_template, request, session, url_for
|
||||||
from requests_oauthlib import OAuth2Session # type: ignore
|
from requests_oauthlib import OAuth2Session # type: ignore
|
||||||
import sentry_sdk
|
|
||||||
from sentry_sdk.integrations.quart import QuartIntegration
|
|
||||||
from uvicorn.middleware.proxy_headers import ProxyHeadersMiddleware # type: ignore
|
from uvicorn.middleware.proxy_headers import ProxyHeadersMiddleware # type: ignore
|
||||||
|
|
||||||
|
|
||||||
@ -33,10 +31,6 @@ QUART_DEBUG = getenv("QUART_DEBUG", False)
|
|||||||
if QUART_DEBUG:
|
if QUART_DEBUG:
|
||||||
logging.basicConfig(level=logging.DEBUG)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
|
||||||
SENTRY_DSN = getenv("SENTRY_DSN")
|
|
||||||
if SENTRY_DSN:
|
|
||||||
sentry_sdk.init(SENTRY_DSN, integrations=[QuartIntegration()])
|
|
||||||
|
|
||||||
API_BASE_URL = getenv("API_BASE_URL", "https://discordapp.com/api")
|
API_BASE_URL = getenv("API_BASE_URL", "https://discordapp.com/api")
|
||||||
AUTHORIZATION_BASE_URL = f"{API_BASE_URL}/oauth2/authorize"
|
AUTHORIZATION_BASE_URL = f"{API_BASE_URL}/oauth2/authorize"
|
||||||
TOKEN_URL = f"{API_BASE_URL}/oauth2/token"
|
TOKEN_URL = f"{API_BASE_URL}/oauth2/token"
|
||||||
|
43
poetry.lock
generated
43
poetry.lock
generated
@ -1358,47 +1358,6 @@ requests = ">=2.0.0"
|
|||||||
[package.extras]
|
[package.extras]
|
||||||
rsa = ["oauthlib[signedtoken] (>=3.0.0)"]
|
rsa = ["oauthlib[signedtoken] (>=3.0.0)"]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "sentry-sdk"
|
|
||||||
version = "1.18.0"
|
|
||||||
description = "Python client for Sentry (https://sentry.io)"
|
|
||||||
category = "main"
|
|
||||||
optional = false
|
|
||||||
python-versions = "*"
|
|
||||||
files = [
|
|
||||||
{file = "sentry-sdk-1.18.0.tar.gz", hash = "sha256:d07b9569a151033b462f7a7113ada94cc41ecf49daa83d35f5f852a0b9cf3b44"},
|
|
||||||
{file = "sentry_sdk-1.18.0-py2.py3-none-any.whl", hash = "sha256:714203a9adcac4a4a35e348dc9d3e294ad0200a66cdca26c068967d728f34fcb"},
|
|
||||||
]
|
|
||||||
|
|
||||||
[package.dependencies]
|
|
||||||
certifi = "*"
|
|
||||||
urllib3 = {version = ">=1.26.11", markers = "python_version >= \"3.6\""}
|
|
||||||
|
|
||||||
[package.extras]
|
|
||||||
aiohttp = ["aiohttp (>=3.5)"]
|
|
||||||
arq = ["arq (>=0.23)"]
|
|
||||||
beam = ["apache-beam (>=2.12)"]
|
|
||||||
bottle = ["bottle (>=0.12.13)"]
|
|
||||||
celery = ["celery (>=3)"]
|
|
||||||
chalice = ["chalice (>=1.16.0)"]
|
|
||||||
django = ["django (>=1.8)"]
|
|
||||||
falcon = ["falcon (>=1.4)"]
|
|
||||||
fastapi = ["fastapi (>=0.79.0)"]
|
|
||||||
flask = ["blinker (>=1.1)", "flask (>=0.11)"]
|
|
||||||
httpx = ["httpx (>=0.16.0)"]
|
|
||||||
huey = ["huey (>=2)"]
|
|
||||||
opentelemetry = ["opentelemetry-distro (>=0.35b0)"]
|
|
||||||
pure-eval = ["asttokens", "executing", "pure-eval"]
|
|
||||||
pymongo = ["pymongo (>=3.1)"]
|
|
||||||
pyspark = ["pyspark (>=2.4.4)"]
|
|
||||||
quart = ["blinker (>=1.1)", "quart (>=0.16.1)"]
|
|
||||||
rq = ["rq (>=0.6)"]
|
|
||||||
sanic = ["sanic (>=0.8)"]
|
|
||||||
sqlalchemy = ["sqlalchemy (>=1.2)"]
|
|
||||||
starlette = ["starlette (>=0.19.1)"]
|
|
||||||
starlite = ["starlite (>=1.48)"]
|
|
||||||
tornado = ["tornado (>=5)"]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "six"
|
name = "six"
|
||||||
version = "1.16.0"
|
version = "1.16.0"
|
||||||
@ -1671,4 +1630,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "2.0"
|
lock-version = "2.0"
|
||||||
python-versions = "^3.8.1"
|
python-versions = "^3.8.1"
|
||||||
content-hash = "2f23bd7f5d5d7cc2142079acc3bb68d5f84b20ab68ed74c181ee1044f7246e1d"
|
content-hash = "5d4bcb06612b5d722a32923c80051c313a543b5f778ec845ff75542557d7facd"
|
||||||
|
@ -18,7 +18,6 @@ ics = "0.8.0.dev0"
|
|||||||
python-dotenv = "^1.0.0"
|
python-dotenv = "^1.0.0"
|
||||||
quart = "^0.18.3"
|
quart = "^0.18.3"
|
||||||
requests-oauthlib = "^1.3.1"
|
requests-oauthlib = "^1.3.1"
|
||||||
sentry-sdk = "^1.17.0"
|
|
||||||
uvicorn = "^0.21.1"
|
uvicorn = "^0.21.1"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
|
Loading…
Reference in New Issue
Block a user