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
hi, it looks like having an unmatched quote at the end of a value is not caught as a syntax error.
sidecars: sidecars1: cpu: 42'
result is ok:
{ "sidecars": { "sidecars1": { "cpu": "42'" } } }
While this may seem harmless, it actually results in a crash on CI/CD such as harness.
having it at the beginning of the value works as expected:
sidecars: sidecars1: cpu: '42
YAMLException: unexpected end of the stream within a single quoted scalar (4:1) 1 | sidecars: 2 | sidecars1: 3 | cpu: '42 4 | -----^
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi, it looks like having an unmatched quote at the end of a value is not caught as a syntax error.
result is ok:
While this may seem harmless, it actually results in a crash on CI/CD such as harness.
having it at the beginning of the value works as expected:
The text was updated successfully, but these errors were encountered: