When trying to push a messge like this, I get an error.
{
QueueUrl: config.processSQSUrl,
MessageBody: JSON.stringify(process),
MessageGroupId: user._id.toString(),
MessageDeduplicationId: process._id.toString(),
}
Error: Value 5fd60febddc333276ed29e1e for parameter MessageGroupId is invalid. The request include parameter that is not valid for this queue type
I have currently this serverless config:
When trying to push a messge like this, I get an error.
A message like this works fine.
So I expect, that the queue, which is being created, is not a fifo queue. Did I miss something here? Thanks for your time!