From 40af507942ff04900a564f2c70521c193fe419c7 Mon Sep 17 00:00:00 2001 From: Gustavo Caso Date: Wed, 5 Jul 2023 18:11:38 +0200 Subject: [PATCH] remove lazy call for experimental_timeline_enabled option --- lib/datadog/core/configuration/settings.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/datadog/core/configuration/settings.rb b/lib/datadog/core/configuration/settings.rb index b48807eed0e..3edffa85348 100644 --- a/lib/datadog/core/configuration/settings.rb +++ b/lib/datadog/core/configuration/settings.rb @@ -360,7 +360,6 @@ def initialize(*_) # @default `DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED` environment variable as a boolean, otherwise `false` option :experimental_timeline_enabled do |o| o.default { env_to_bool('DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED', false) } - o.lazy end end