feat(sentry): remove Sentry

This commit is contained in:
2024-11-24 10:16:20 +00:00
parent 2d4a1294cb
commit 5efa42d35d
12 changed files with 20 additions and 170 deletions

View File

@ -2,25 +2,12 @@
import sys
from sentry_sdk.integrations.stdlib import StdlibIntegration
from webex_bot.webex_bot import WebexBot
from app.commands.exit import ExitCommand
from app.commands.submit_task import SubmitTaskCommand
from app.utils.config import config
if config.sentry_enabled:
import sentry_sdk
apm = sentry_sdk.init(
dsn=config.sentry_dsn,
enable_tracing=True,
environment=config.environment,
release=config.version,
integrations=[StdlibIntegration()],
spotlight=True,
)
def create_bot() -> WebexBot:
"""Create and return a Webex Bot object."""