Hi
I’ve integrated Sentry with a FastAPI (Python) ASGI application. Initially I added a new project to an existing account. My route handler deliberately raised an error and I could see the sentry-sdk
making the request to the DSN and receiving a 200
response. However, no events were being displayed in the Project.
After some head scratching, I decided to create a new account and a new Project. I changed the DSN to refer to this new project, and now the events were being displayed.
As a “just in case” I checked the original project to see if there was any input filtering on it, but there wasn’t.
Any idea why events would show up in one project and not another? The only thing I changed was the DSN.
Thanks