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
`
#Send a message - Works fine
Send-RabbitMqMessage -ComputerName $messageServer -Exchange $exchange -Key $routing_key -InputObject $message -ContentType 'application/json' @params -ErrorAction Stop
#In same terminal set a variable $Body to something
$Body = "something"
#Send the same message as before again.
Send-RabbitMqMessage -ComputerName $messageServer -Exchange $exchange -Key $routing_key -InputObject $message -ContentType 'application/json' @params -ErrorAction Stop
Send-RabbitMqMessage : Cannot convert argument "body", with value: "thing", for "BasicPublish" to type "System.Byte[]": "Cannot convert value
"thing" to type "System.Byte[]". Error: "Cannot convert value "thing" to type "System.Byte". Error: "Input string was not in a correct format."""
At line:1 char:1
When using the pipeline the body is not re-calculated for each inputObject, $Body is tested to be re-created and has a value. I changed to:
The text was updated successfully, but these errors were encountered: