We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: