File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,7 @@ const app = express();
5959Sentry . init ( {
6060 integrations : [
6161 // Enable HTTP calls tracing.
62- // XXX: OSCI-5419
63- new Sentry . Integrations . Http ( { tracing : false } ) ,
62+ new Sentry . Integrations . Http ( ) ,
6463 // Enable Express.js middleware tracing.
6564 new Sentry . Integrations . Express ( { app } ) ,
6665 // Automatically instrument Node.js libraries and frameworks.
@@ -74,8 +73,12 @@ Sentry.init({
7473 * transactions are isolated across requests.
7574 */
7675app . use ( Sentry . Handlers . requestHandler ( ) ) ;
76+ /*
77+ * FIXME: Disabled for now. See OSCI-5419 and the upstream issue:
78+ * https://github.com/getsentry/sentry-javascript/issues/8654
79+ */
7780// TracingHandler creates a trace for every incoming request.
78- app . use ( Sentry . Handlers . tracingHandler ( ) ) ;
81+ // app.use(Sentry.Handlers.tracingHandler());
7982
8083app . use ( cors ( ) ) ;
8184if ( app . get ( 'env' ) === 'development' ) {
You can’t perform that action at this time.
0 commit comments