-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
The JSON code
"list_param" : ["A", "B", "C"],
"val1" : ${list_param[0]}
causes the following error message:
'Invalid nested parameter format: ${list_param[0]}'
The wording is wrong: The expression '${list_param[0]}' does not contain any nested parameters.
(This would be a nesting of parameters: '${list_param[${index}]}')
The meaning is valid - but unfortunately not helpful for users. They need to be informed about the reason: Why is the format invalid?
Expected is an error message telling, that it's not allowed to put the index inside the curly brackets. Indices have to be placed outside.
Metadata
Metadata
Labels
Projects
Status
Done