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
Workaround is that I must configure with useSecureAPI = 'false' If I use useSecureAPI = false the actual value used is set to true
Bug is in here
class ConfigHelper { public static booleanValue(def value, boolean defaultValue) { if (!value) { return defaultValue } if (value.class == java.lang.Boolean) { // because 'true.toBoolean() == false' !!! return value } else { return value.toBoolean() } }
should be
public static booleanValue(def value, boolean defaultValue) { if (value == null) { return defaultValue } if (value.class == java.lang.Boolean) { // because 'true.toBoolean() == false' !!! return value } else { return value.toBoolean() } }
The text was updated successfully, but these errors were encountered:
Correctly parse config values.
53e2ccf
Behave correctly for config values of "false", or when config value is missing entirely. Refs #13
iamthechad
No branches or pull requests
Workaround is that I must configure with
useSecureAPI = 'false'
If I use
useSecureAPI = false
the actual value used is set to true
Bug is in here
should be
The text was updated successfully, but these errors were encountered: