diff --git a/src/core/config.py b/src/core/config.py index 767c6cf..22b5926 100644 --- a/src/core/config.py +++ b/src/core/config.py @@ -23,7 +23,7 @@ class EnvConfig(BaseSettings): REDIS_PORT: int REDIS_DB: int - SENTRY_SDN: str + SENTRY_DSN: str env_config = EnvConfig() diff --git a/src/core/sentry.py b/src/core/sentry.py index d83860d..a2ad94c 100644 --- a/src/core/sentry.py +++ b/src/core/sentry.py @@ -4,5 +4,5 @@ from core.config import env_config sentry_sdk.init( - env_config.SENTRY_SDN, + env_config.SENTRY_DSN, )