Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions packages/remix/src/index.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { logger } from '@sentry/utils';

import { DEBUG_BUILD } from './utils/debug-build';
import { instrumentServer } from './utils/instrumentServer';
import { httpIntegration } from './utils/integrations/http';
import { remixIntegration } from './utils/integrations/opentelemetry';
import type { RemixOptions } from './utils/remixOptions';

Expand Down Expand Up @@ -153,8 +152,7 @@ export type { SentryMetaArgs } from './utils/types';
*/
export function getRemixDefaultIntegrations(options: RemixOptions): Integration[] {
return [
...getDefaultNodeIntegrations(options as NodeOptions).filter(integration => integration.name !== 'Http'),
httpIntegration(),
...getDefaultNodeIntegrations(options as NodeOptions),
options.autoInstrumentRemix ? remixIntegration() : undefined,
].filter(int => int) as Integration[];
}
Expand Down
30 changes: 0 additions & 30 deletions packages/remix/src/utils/integrations/http.ts

This file was deleted.

Loading