From 0eef9b3061bf59cdaf7c04b704d6b9f35795e774 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskii Date: Sat, 27 Jan 2024 22:02:22 -0300 Subject: [PATCH] debug: main.py with import sentry-sdk --- main.py | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 190fb497..5496c0c0 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,7 @@ import os from importlib import import_module from os.path import exists +import sentry_sdk from ariadne import load_schema_from_path, make_executable_schema from ariadne.asgi import GraphQL diff --git a/pyproject.toml b/pyproject.toml index 46e2d6f9..90c5f1c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ python = "^3.12" SQLAlchemy = "^2.0.22" psycopg2-binary = "^2.9.9" redis = {extras = ["hiredis"], version = "^5.0.1"} -sentry-sdk = "^1.39.1" +sentry-sdk = "^1.4.1" starlette = "^0.36.1" gql = "^3.4.1" ariadne = "^0.21"