Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion develop-docs/backend/application-domains/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ While the process for creating and using options in the codebase is universal, t
## Adding New Options

The process for registering a new option is the same for all environments and is done in the Sentry codebase. Add your option to [`sentry/options/defaults.py`](https://github.com/getsentry/sentry/blob/master/sentry/options/defaults.py).
The process for registering a new option is the same for all environments and is done in the Sentry codebase. Add your option to [`src/sentry/options/defaults.py`](https://github.com/getsentry/sentry/blob/master/src/sentry/options/defaults.py).

```python
register("performance.some-feature-rate", default=0.0)
Expand Down
Loading