-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: pipeline-utility-steps-plugin
-
None
-
Environment:Jenkins 2.452.2
Plugin Version 2.17.0
When reading in a _very simple _ nested yaml, readYaml does not convert it to a nested map, but to a flat map.
The following snippet gives
def myYaml = "aim.setup: true"
yamlMap = readYaml(text: myYaml)
a map with keyÂ
aim.setup
(not a map aim -> map: setup: true.
With more complex yamls, I don't face the problem.