Skip to content
Closed
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
2 changes: 1 addition & 1 deletion ddtrace/internal/settings/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def __init__(self):
self._trace_writer_log_err_payload = _get_config("_DD_TRACE_WRITER_LOG_ERROR_PAYLOADS", False, asbool)

# Use the NativeWriter instead of the AgentWriter
self._trace_writer_native = _get_config("_DD_TRACE_WRITER_NATIVE", True, asbool)
self._trace_writer_native = _get_config("_DD_TRACE_WRITER_NATIVE", False, asbool)

# TODO: Remove the configurations below. ddtrace.internal.agent.config should be used instead.
self._trace_agent_url = _get_config("DD_TRACE_AGENT_URL")
Expand Down
3 changes: 1 addition & 2 deletions tests/telemetry/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,8 @@ def test_app_started_event_configuration_override(test_agent_session, run_python
{"name": "_DD_APPSEC_DEDUPLICATION_ENABLED", "origin": "default", "value": True},
{"name": "_DD_IAST_LAZY_TAINT", "origin": "default", "value": False},
{"name": "_DD_IAST_USE_ROOT_SPAN", "origin": "default", "value": False},
{"name": "_DD_NATIVE_LOGGING_BACKEND", "origin": "default", "value": None},
{"name": "_DD_TRACE_WRITER_LOG_ERROR_PAYLOADS", "origin": "default", "value": False},
{"name": "_DD_TRACE_WRITER_NATIVE", "origin": "default", "value": True},
{"name": "_DD_TRACE_WRITER_NATIVE", "origin": "default", "value": False},
{"name": "instrumentation_source", "origin": "code", "value": "manual"},
{"name": "python_build_gnu_type", "origin": "unknown", "value": sysconfig.get_config_var("BUILD_GNU_TYPE")},
{"name": "python_host_gnu_type", "origin": "unknown", "value": sysconfig.get_config_var("HOST_GNU_TYPE")},
Expand Down
Loading