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
7 changes: 0 additions & 7 deletions src/sentry/options/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -2356,13 +2356,6 @@

# END: SDK Crash Detection

# Whether to add the full stack trace to Python errors.
register(
"sentry_sdk.add_full_stack",
default=False,
flags=FLAG_AUTOMATOR_MODIFIABLE,
)

register(
# Lists the shared resource ids we want to account usage for.
"shared_resources_accounting_enabled",
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/utils/sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def _get_sdk_options() -> tuple[SdkConfig, Dsns]:
before_send_log=before_send_log,
enable_logs=True,
)
sdk_options["add_full_stack"] = options.get("sentry_sdk.add_full_stack", False)
sdk_options["add_full_stack"] = True

# Modify SENTRY_SDK_CONFIG in your deployment scripts to specify your desired DSN
dsns = Dsns(
Expand Down
Loading