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
The code to inject parameters into the invocation image does not handle object or array types correctly. For example, if I include an object in my parameters section then it appears inside the invocation image as map[string]interface{"key": "value"} instead of {"key": "value"}.
The code referenced above should marshal the parameter values to JSON.
The code to inject parameters into the invocation image does not handle
object
orarray
types correctly. For example, if I include an object in my parameters section then it appears inside the invocation image asmap[string]interface{"key": "value"}
instead of{"key": "value"}
.The code referenced above should marshal the parameter values to JSON.
cc @youreddy
The text was updated successfully, but these errors were encountered: