From 817fde205f8ed7820f5343c059e8e7e40e69842f Mon Sep 17 00:00:00 2001 From: Reinaldy Rafli Date: Thu, 28 Nov 2024 00:53:07 +0700 Subject: [PATCH] ref: remove suggested fix (#3446) --- docker-compose.yml | 1 - sentry/sentry.conf.example.py | 14 -------------- 2 files changed, 15 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b11db2d79a..0710ee41e1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -59,7 +59,6 @@ x-sentry-defaults: &sentry_defaults SENTRY_EVENT_RETENTION_DAYS: SENTRY_MAIL_HOST: SENTRY_MAX_EXTERNAL_SOURCEMAP_SIZE: - OPENAI_API_KEY: volumes: - "sentry-data:/data" - "./sentry:/etc/sentry" diff --git a/sentry/sentry.conf.example.py b/sentry/sentry.conf.example.py index 28403d6945..27f6ad02c2 100644 --- a/sentry/sentry.conf.example.py +++ b/sentry/sentry.conf.example.py @@ -335,20 +335,6 @@ def get_internal_network(): # BITBUCKET_CONSUMER_KEY = 'YOUR_BITBUCKET_CONSUMER_KEY' # BITBUCKET_CONSUMER_SECRET = 'YOUR_BITBUCKET_CONSUMER_SECRET' -############################################## -# Suggested Fix Feature / OpenAI Integration # -############################################## - -# See https://docs.sentry.io/product/issues/issue-details/ai-suggested-solution/ -# for more information about the feature. Make sure the OpenAI's privacy policy is -# aligned with your company. - -# Set the OPENAI_API_KEY on the .env or .env.custom file with a valid -# OpenAI API key to turn on the feature. -OPENAI_API_KEY = env("OPENAI_API_KEY", "") - -SENTRY_FEATURES["organizations:open-ai-suggestion"] = bool(OPENAI_API_KEY) - ############################################## # Content Security Policy settings ##############################################