-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
I found that method sqs_create_queue doesn't work
It's an error in source code
Look at sqs_create_queue method implementation
There is a line snprintf ( resource, sizeof(resource), SQSHost, Req, name,
awsKeyID, signature, date );
We need to exchange Req & SQSHost params
The right implementation is snprintf ( resource, sizeof(resource), Req,
SQSHost, name, awsKeyID, signature, date );
Please commit to repo this fix
Original issue reported on code.google.com by i...@quickblox.com on 11 Mar 2014 at 7:30
Reactions are currently unavailable