We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
This is the fix https://github.com/soulfly/aws4c/commit/c58ba55afab42ed095f6abd11206065a3f2b7194
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: