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 @@ -11,7 +11,6 @@ import { logger } from '@sentry/utils';
11
11
12
12
import { DEBUG_BUILD } from './utils/debug-build' ;
13
13
import { instrumentServer } from './utils/instrumentServer' ;
14
- import { httpIntegration } from './utils/integrations/http' ;
15
14
import { remixIntegration } from './utils/integrations/opentelemetry' ;
16
15
import type { RemixOptions } from './utils/remixOptions' ;
17
16
@@ -158,8 +157,7 @@ export type { SentryMetaArgs } from './utils/types';
158
157
*/
159
158
export function getRemixDefaultIntegrations ( options : RemixOptions ) : Integration [ ] {
160
159
return [
161
- ...getDefaultNodeIntegrations ( options as NodeOptions ) . filter ( integration => integration . name !== 'Http' ) ,
162
- httpIntegration ( ) ,
160
+ ...getDefaultNodeIntegrations ( options as NodeOptions ) ,
163
161
options . autoInstrumentRemix ? remixIntegration ( ) : undefined ,
164
162
] . filter ( int => int ) as Integration [ ] ;
165
163
}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments