Skip to content
Draft
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/settings/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,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", False, asbool)
self._trace_writer_native = _get_config("_DD_TRACE_WRITER_NATIVE", True, 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
Loading