-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not useable with bun > freeze loading #9547
Comments
Assigning to @getsentry/support for routing ⏲️ |
Thanks for reporting! We will take a look. |
@approached could you run this in Node (might need to install the elysia adapter) and patch the global Bun object like so:
This will tell us if the issue is because of something |
➜ api git:(master) ✗ bun run src/index.ts
1 | globalThis.Bun = {
version: "",
serve: () => {
return;
}
};
^
TypeError: Attempted to assign to readonly property.
at .../backend/api/src/index.ts:1:0 Version: Bun v1.0.14 |
I meant run this in via As per #9516 (comment), this is a issue with Bun. I would recommend you open an issue with https://github.com/oven-sh/bun |
@AbhiPrasad this already exists: oven-sh/bun#5091 |
Hey @approached that linked GH issue is about support for global error handlers with Bun, not about the problem that has been reported here. That will require a different GH issue. |
I have the same issue like: #9564 Sentry.init({
dsn: process.env.SENTRY_DSN,
environment: process.env.NODE_ENV,
release:version,
enabled: true,
enableTracing: false,
integrations: (int) => int.filter((i) => !["BunServer", "Http"].includes(i.name)),
}); This filter worked for me. |
Fixed with 8.0.0 of https://docs.sentry.io/platforms/javascript/guides/bun https://docs.sentry.io/platforms/javascript/guides/bun/migration/v7-to-v8 |
Environment
SaaS (https://sentry.io/)
Steps to Reproduce
Expected Result
Userlist from firebase admin sdk.
Actual Result
Loading freeze, no output. Only if disable sentry.
Logs:
How i can disable sentry-trace?
Product Area
Unknown
Link
No response
DSN
No response
Version
No response
The text was updated successfully, but these errors were encountered: