Browse Source

ref(features): Enable event attachments by default (#20335)

Enables the event attachments feature by default, which allows to
download minidumps from the issue details page and attach custom files
to error events.
Jan Michael Auer 4 years ago
parent
commit
bd662b2be8
2 changed files with 2 additions and 1 deletions
  1. 1 1
      src/sentry/conf/server.py
  2. 1 0
      tests/sentry/api/serializers/test_organization.py

+ 1 - 1
src/sentry/conf/server.py

@@ -819,7 +819,7 @@ SENTRY_FEATURES = {
     # Enable the 'discover' interface.
     # Enable the 'discover' interface.
     "organizations:discover": False,
     "organizations:discover": False,
     # Enable attaching arbitrary files to events.
     # Enable attaching arbitrary files to events.
-    "organizations:event-attachments": False,
+    "organizations:event-attachments": True,
     # Allow organizations to configure built-in symbol sources.
     # Allow organizations to configure built-in symbol sources.
     "organizations:symbol-sources": True,
     "organizations:symbol-sources": True,
     # Allow organizations to configure custom external symbol sources.
     # Allow organizations to configure custom external symbol sources.

+ 1 - 0
tests/sentry/api/serializers/test_organization.py

@@ -24,6 +24,7 @@ class OrganizationSerializerTest(TestCase):
                 "advanced-search",
                 "advanced-search",
                 "shared-issues",
                 "shared-issues",
                 "open-membership",
                 "open-membership",
+                "event-attachments",
                 "integrations-issue-basic",
                 "integrations-issue-basic",
                 "integrations-issue-sync",
                 "integrations-issue-sync",
                 "integrations-alert-rule",
                 "integrations-alert-rule",