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
Xml does not allow unescaped element to be a value for another element. For example, this is not correct:
<join>my_log_<cyclestr>@H</cyclestr></join>
Should be
<join>my_log_<cyclestr>@H</cyclestr></join>
The unescaped as used for log files makes the xml unparsable.
All
Replace <cyclestr> used in log files with their escaped version instead.
<cyclestr>
The text was updated successfully, but these errors were encountered:
danielabdi-noaa
No branches or pull requests
Expected behavior
Xml does not allow unescaped element to be a value for another element.
For example, this is not correct:
Should be
Current behavior
The unescaped as used for log files makes the xml unparsable.
Machines affected
All
Detailed Description of Fix (optional)
Replace
<cyclestr>
used in log files with their escaped version instead.The text was updated successfully, but these errors were encountered: