0.0.3
Some checks are pending
deploy / deploy (push) Waiting to run

This commit is contained in:
2023-11-30 09:42:41 +03:00
parent 851ab77f7b
commit 9849788cb6
4 changed files with 29 additions and 23 deletions

View File

@@ -2,6 +2,9 @@ import os
import asyncio
from os.path import exists
from sentry_sdk.integrations.aiohttp import AioHttpIntegration
from sentry_sdk.integrations.redis import RedisIntegration
from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
from sentry_sdk.integrations.strawberry import StrawberryIntegration
from strawberry.asgi import GraphQL
from starlette.applications import Starlette
@@ -35,6 +38,9 @@ async def start_up():
# at least one async resolver
async_execution=True
),
SqlalchemyIntegration(),
RedisIntegration(),
AioHttpIntegration(),
],
)
except Exception as e: