Skip to content

Commit

Permalink
disable FastAPI Sentry specific integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
douwevandermeij committed Aug 3, 2022
1 parent d8544db commit 19404a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fractal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Fractal is a scaffolding toolkit for building SOLID logic for your Python applications."""

__version__ = "0.4.11"
__version__ = "0.4.12"

from abc import ABC

Expand Down
4 changes: 2 additions & 2 deletions fractal/contrib/fastapi/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def install_fastapi(settings: Settings):
sentry_sdk.init(
dsn=sentry_dsn,
integrations=[
StarletteIntegration(),
FastApiIntegration(),
# StarletteIntegration(),
# FastApiIntegration(),
],
)

Expand Down

0 comments on commit 19404a7

Please sign in to comment.