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
The manifest option types specify that options can be either "string", "int", or "bool". The expectation here would be that for "int" and "bool" arguments, they would be passed into the init call, unquoted.
Example (Expected):
--test-arg=1000 --> "test-arg": 1000
Example (Actual):
--test-arg=1000 --> "test-arg": "1000"
This is true, even in the case of manifest supplied defaults.
The text was updated successfully, but these errors were encountered:
The manifest option types specify that options can be either "string", "int", or "bool". The expectation here would be that for "int" and "bool" arguments, they would be passed into the
init
call, unquoted.Example (Expected):
--test-arg=1000 --> "test-arg": 1000
Example (Actual):
--test-arg=1000 --> "test-arg": "1000"
This is true, even in the case of manifest supplied defaults.
The text was updated successfully, but these errors were encountered: