boto / boto

For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services

Home Page:http://docs.pythonboto.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Boto support for SQS fifo

vladwoguer opened this issue · comments

I'm trying to send a message for a FIFO queue:
conn = boto.sqs.connect_to_region(aws_region, aws_access_key_id=aws_access_key_id,
aws_secret_access_key=aws_secret)
queue = conn.get_queue(aws_queue)
conn.send_message(queue,'test')
And receiving the following error:

SenderMissingParameterThe request must contain the parameter MessageGroupId.ID_HERE

How can I set the MessageGroupId paramenter?

In case anyone has the same doubt, I recommend migrate to boto3.
It's not possible manage SQS fifo queues with boto2. In case anyone find a workaround please let me know.

Did you find the workaround?

No I migrated to boto3, sorry.