|
@@ -1902,6 +1902,10 @@ SENTRY_USE_CDC_DEV = False
|
|
|
# This flag activates profiling backend in the development environment
|
|
|
SENTRY_USE_PROFILING = False
|
|
|
|
|
|
+# This flag activates consuming issue platform occurrence data in the development environment
|
|
|
+SENTRY_USE_ISSUE_OCCURRENCE = False
|
|
|
+
|
|
|
+
|
|
|
# This flag activates code paths that are specific for customer domains
|
|
|
SENTRY_USE_CUSTOMER_DOMAINS = False
|
|
|
|
|
@@ -2066,6 +2070,9 @@ SENTRY_DEVSERVICES = {
|
|
|
"REDIS_DB": "1",
|
|
|
"ENABLE_SENTRY_METRICS_DEV": "1" if settings.SENTRY_USE_METRICS_DEV else "",
|
|
|
"ENABLE_PROFILES_CONSUMER": "1" if settings.SENTRY_USE_PROFILING else "",
|
|
|
+ "ENABLE_ISSUE_OCCURRENCE_CONSUMER": "1"
|
|
|
+ if settings.SENTRY_USE_ISSUE_OCCURRENCE
|
|
|
+ else "",
|
|
|
},
|
|
|
"only_if": "snuba" in settings.SENTRY_EVENTSTREAM
|
|
|
or "kafka" in settings.SENTRY_EVENTSTREAM,
|