Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions src/sentry/options/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,14 @@
flags=FLAG_AUTOMATOR_MODIFIABLE,
)

# Threshold for inlining attachments in relay.
register(
"relay.attachment-inline.limit",
type=Int,
default=0,
Comment thread
tobias-wilfert marked this conversation as resolved.
flags=FLAG_AUTOMATOR_MODIFIABLE,
)

# Rollout rate for double writing sessions to EAP.
register(
"relay.sessions-eap.rollout-rate",
Expand Down
1 change: 1 addition & 0 deletions src/sentry/relay/globalconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"relay.drop-transaction-attachments",
"relay.objectstore-attachments.sample-rate",
"relay.endpoint-fetch-config.enabled",
"relay.attachment-inline.limit",
]


Expand Down
Loading