-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
The JSON code
{
"par1" : "par",
"val2" : ${par1}am}
}
causes the following error message:
'Invalid nested parameter format: ${par1}am}'
This is a little bit misleading. The format of this expression is not really invalid. But because of it's a composite string, the entire expression needs to be encapsulated in quotes:
"val2" : "${par1}am}"
Expected is the already introduced error message:
The double quotes are missing!
Metadata
Metadata
Assignees
Labels
Projects
Status
Done