Dashboard › sentry › options.get() reads from DB — config fi…
019d9d69-097b-7a03-8f59-3ca5f94daf34options.get() reads from DB — config file SENTRY_OPTIONS dict not used for all keys: options.get(key) reads from DB-backed store with caching, NOT from SENTRY_OPTIONS dict (which only applies to FLAG_NOSTORE keys or initial defaults). To set runtime options locally: from sentry import options; options.set('key', 'value') via Django shell. In tests, @override_options({...}) must include ALL accessed options — missing keys hit real DB, causing RuntimeError without @pytest.mark.django_db. Production changes go through sentry-options-automator repo (configoptions) for gradual rollout without deploys.