Skip to content
Open
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
1 change: 0 additions & 1 deletion ddtrace/internal/settings/exception_replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class ExceptionReplayConfig(DDConfig):
default=False,
help_type="Boolean",
help="Enable automatic capturing of exception debugging information",
deprecations=[("debugging.enabled", None, "3.0")],
)
max_frames = DDConfig.v(
int,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
upgrade:
- |
exception replay: removed the deprecated ``DD_EXCEPTION_DEBUGGING_ENABLED``
variable.
12 changes: 0 additions & 12 deletions tests/debugging/exception/test_replay.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,18 +57,6 @@ def test_exception_replay_config_enabled(monkeypatch):
assert er_config.enabled


def test_exception_replay_config_enabled_deprecated(monkeypatch):
monkeypatch.setenv("DD_EXCEPTION_DEBUGGING_ENABLED", "1")

er_config = ExceptionReplayConfig()
assert er_config.enabled

monkeypatch.setenv("DD_EXCEPTION_REPLAY_ENABLED", "false")

er_config = ExceptionReplayConfig()
assert not er_config.enabled


def test_exception_chain_ident():
def a(v, d=None):
if not v:
Expand Down
Loading