-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
-
1.0
When editing a step with an integer parameter (for example Sleep), the saved value for this parameter is a string, and this make the resulting pipeline failing.
Here is an sample of what is generated by the pipeline editor
sleep(time: '5', unit: 'MINUTES')
and what is should have been
sleep(time: 5, unit: 'MINUTES')