Browse Source

fix(onboarding): Remove django integration from python snippet (#55344)

relates to https://github.com/getsentry/sentry/pull/55323
ArthurKnaus 1 year ago
parent
commit
c8f37184de
1 changed files with 1 additions and 4 deletions
  1. 1 4
      static/app/gettingStartedDocs/python/python.tsx

+ 1 - 4
static/app/gettingStartedDocs/python/python.tsx

@@ -87,10 +87,7 @@ export function GettingStartedWithPython({
 }: ModuleProps) {
   const otherConfigs: string[] = [];
 
-  let sentryInitContent: string[] = [
-    `  dsn="${dsn}",`,
-    `  integrations=[DjangoIntegration()],`,
-  ];
+  let sentryInitContent: string[] = [`  dsn="${dsn}",`];
 
   if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) {
     otherConfigs.push(performanceConfiguration);