Skip to content

Commit 85a4c56

Browse files
committed
build: more sentry integration
1 parent 1e70d62 commit 85a4c56

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

asgi_webdav/server.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,12 @@ def get_asgi_app(aep: AppEntryParameters, config_obj: dict[str, Any] | None = No
184184
from sentry_sdk.integrations.asgi import ( # type: ignore
185185
SentryAsgiMiddleware,
186186
)
187+
from sentry_sdk.integrations.asyncio import AsyncioIntegration
187188

188189
sentry_sdk.init(
189190
dsn=config.sentry_dsn,
190191
release=f"{app_name}@{__version__}",
192+
integrations=[AsyncioIntegration()],
191193
)
192194
app = SentryAsgiMiddleware(app)
193195

0 commit comments

Comments
 (0)