Open kapone89 opened 1 year ago
Boolean config params set using ENVs, like
SCOUT_CORE_AGENT_DOWNLOAD=false SCOUT_CORE_AGENT_LAUNCH=false
Doesn't work, because they are parsed as strings. So e.g. here https://github.com/scoutapp/scout_apm_elixir/blob/master/lib/scout_apm/core/agent_manager.ex#L53 There will be "false" string and !!"false" is true
"false"
!!"false"
true
Boolean config params set using ENVs, like
Doesn't work, because they are parsed as strings. So e.g. here https://github.com/scoutapp/scout_apm_elixir/blob/master/lib/scout_apm/core/agent_manager.ex#L53 There will be
"false"
string and!!"false"
istrue