File tree Expand file tree Collapse file tree 2 files changed +1
-33
lines changed Expand file tree Collapse file tree 2 files changed +1
-33
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import { logger } from '@sentry/utils';
6
6
7
7
import { DEBUG_BUILD } from './utils/debug-build' ;
8
8
import { instrumentServer } from './utils/instrumentServer' ;
9
- import { httpIntegration } from './utils/integrations/http' ;
10
9
import { remixIntegration } from './utils/integrations/opentelemetry' ;
11
10
import type { RemixOptions } from './utils/remixOptions' ;
12
11
@@ -153,8 +152,7 @@ export type { SentryMetaArgs } from './utils/types';
153
152
*/
154
153
export function getRemixDefaultIntegrations ( options : RemixOptions ) : Integration [ ] {
155
154
return [
156
- ...getDefaultNodeIntegrations ( options as NodeOptions ) . filter ( integration => integration . name !== 'Http' ) ,
157
- httpIntegration ( ) ,
155
+ ...getDefaultNodeIntegrations ( options as NodeOptions ) ,
158
156
options . autoInstrumentRemix ? remixIntegration ( ) : undefined ,
159
157
] . filter ( int => int ) as Integration [ ] ;
160
158
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments