Skip to content

Commit 1172f32

Browse files
committed
remove manual captureException
1 parent 0034dbc commit 1172f32

File tree

1 file changed

+1
-2
lines changed
  • dev-packages/bun-integration-tests/suites/basic

1 file changed

+1
-2
lines changed

dev-packages/bun-integration-tests/suites/basic/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ const server = Bun.serve({
2121

2222
return new Response('Hello from Bun!');
2323
},
24-
error(error) {
25-
Sentry.captureException(error);
24+
error(_err) {
2625
return new Response('Internal Server Error', { status: 500 });
2726
},
2827
});

0 commit comments

Comments
 (0)