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
workflow test
{
[CmdletBinding()]
param([string] $NumericString)
write-output $NumericString
}
When starting it with a numeric value (ie: 5) via the Azure Portal as a new Job (published), via the Test Pane, or using the Azure Automation PowerShell ISE Add-On, the following error is returned and the execution Fails.
The values provided for the root activity's arguments did not satisfy the root activity's requirements: 'DynamicActivity': Expected an input parameter value of type 'System.String' for parameter named 'Numeric'. Parameter name: rootArgumentValues
This appears to be something the API is handling strangely, as the JSON that is passed contains valid string data for the property, but it is being interpreted incorrectly and requires extra quote escaping to work.
The text was updated successfully, but these errors were encountered:
Described on StackOverflow here.
Given a simple runbook:
When starting it with a numeric value (ie: 5) via the Azure Portal as a new Job (published), via the Test Pane, or using the Azure Automation PowerShell ISE Add-On, the following error is returned and the execution Fails.
This appears to be something the API is handling strangely, as the JSON that is passed contains valid string data for the property, but it is being interpreted incorrectly and requires extra quote escaping to work.
The text was updated successfully, but these errors were encountered: