-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
validate_string fails for integer #28
Comments
|
Did it give you a line number? I'm not surprised by the future parser failing on it but I don't understand why the future parser runs in the travis matrix aren't failing at that point. |
|
Does travis use future parser and future evaluator? Things are a little vague, but it seems that it evaluates bare word numbers as Fixnum. This can be worked around by setting --evaluator=current |
|
Actually I think --evaluator was removed recently. If you want to test this out you can use the following as test.pp: $var = 123
validate_string($var)and run If you change I'm still not sure why travis doesn't pick this up |
|
Have added a PR #32 to address this |
|
#32 has been merged. |
When running ganglia::web with the defaults it produces this error:
Error: Could not retrieve catalog from remote server: Error 400 on SERVER: 8652 is not a string. It looks to be a Fixnum on node ganglia.example.com
It looks like in future parser it is more strict and $ganglia_port = 8652 fails validate_string().
The text was updated successfully, but these errors were encountered: