You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 31, 2020. It is now read-only.
When specifying memory requirements for a recipe, these are parsed incorrectly when there's a missing space in between the operator and the requirement.
Example:
Memory: >2000
is represented in the xml as: <memory op=">2000" value=""/>
rather than <memory op=">" value="2000"/>
The text was updated successfully, but these errors were encountered:
It is used method split(). String has to contain white space before number "> 2000" as you wrote. It should be clever. I agree. I try to find better solution.
When specifying memory requirements for a recipe, these are parsed incorrectly when there's a missing space in between the operator and the requirement.
Example:
Memory: >2000
is represented in the xml as:
<memory op=">2000" value=""/>
rather than
<memory op=">" value="2000"/>
The text was updated successfully, but these errors were encountered: