-
Notifications
You must be signed in to change notification settings - Fork 544
[Breaking] Remove deprecated propagate_traces
option.
#3725
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Breaking] Remove deprecated propagate_traces
option.
#3725
Conversation
`propagate_traces` is not documented and superseded by `trace_propagation_targets`. Refs getsentry#3106
Hey @nellaG, thanks for the contribution! As this has to go out in a Major (it will be part in SDK 3.0) this will stay around for some while until we are ready to prepare 3.0. So I guess this will happen somewhen in spring 2025. |
propagate_traces
optionpropagate_traces
option.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3725 +/- ##
==========================================
- Coverage 80.15% 80.12% -0.03%
==========================================
Files 139 139
Lines 15391 15388 -3
Branches 2596 2595 -1
==========================================
- Hits 12337 12330 -7
- Misses 2208 2220 +12
+ Partials 846 838 -8
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey @nellaG, thank you for the contribution!
There are two options named propagate_traces
, one is a general SDK option (the one in sentry_sdk/consts.py
) and one is a Celery integration specific option. We only want to remove the general one, but leave propagate_traces
untouched in all Celery files.
Continuing this in #4206. |
The
propagate_traces
option is not documented and was superseded bytrace_propagation_targets
. This has been deprecated for a while and will now be removed.Refs #3106