Просмотр исходного кода

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

relates to https://github.com/getsentry/sentry/pull/55323
ArthurKnaus 1 год назад
Родитель
Сommit
c8f37184de
1 измененных файлов с 1 добавлено и 4 удалено
  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) {
 }: ModuleProps) {
   const otherConfigs: string[] = [];
   const otherConfigs: string[] = [];
 
 
-  let sentryInitContent: string[] = [
-    `  dsn="${dsn}",`,
-    `  integrations=[DjangoIntegration()],`,
-  ];
+  let sentryInitContent: string[] = [`  dsn="${dsn}",`];
 
 
   if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) {
   if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) {
     otherConfigs.push(performanceConfiguration);
     otherConfigs.push(performanceConfiguration);