Skip to content

Commit 71640b8

Browse files
feat(native_writer): remove CSS by default
1 parent dd1c9ba commit 71640b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ddtrace/settings/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ def __init__(self):
601601
# Raise certain errors only if in testing raise mode to prevent crashing in production with non-critical errors
602602
self._raise = _get_config("DD_TESTING_RAISE", False, asbool)
603603

604-
trace_compute_stats_default = True or in_gcp_function() or in_azure_function()
604+
trace_compute_stats_default = in_gcp_function() or in_azure_function()
605605
self._trace_compute_stats = _get_config(
606606
["DD_TRACE_COMPUTE_STATS", "DD_TRACE_STATS_COMPUTATION_ENABLED"], trace_compute_stats_default, asbool
607607
)

0 commit comments

Comments
 (0)