Ramin SJ

Results 1 issues of Ramin SJ

```python import sentry_sdk from sentry_sdk.integrations.asgi import SentryAsgiMiddleware from core.app import app sentry_sdk.init(dsn="https://xxx.ingest.sentry.io/xxxx") asgi_app = SentryAsgiMiddleware(app) raise ValueError() ``` and ```python app = FastAPI() class CustomSentryAsgiMiddleware(SentryAsgiMiddleware): def event_processor( self, event: "Event",...

question