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
pass4s is sending following payload on the SQS if the message is considered large:
{"s3BucketName": "bucket", "s3Key": "key"}
This format is not compatible with the official AWS' extended client which is putting a message with the following format:
["software.amazon.payloadoffloading.PayloadS3Pointer", {"s3BucketName": "bucket", "s3Key": "key"}]
S3Proxy Addon was designed from the beginning to be compatible, so I would consider it as a bug.
Another difference is with message attributes, but this is less important as the attribute is optional I think:
pass4s: -{"ExtendedPayloadSize":{"StringValue":"22","DataType":"String"}} aws extended client: +{"ExtendedPayloadSize":{"StringValue":"22","DataType":"Number"}}
The text was updated successfully, but these errors were encountered:
bwiercinski
Successfully merging a pull request may close this issue.
pass4s is sending following payload on the SQS if the message is considered large:
This format is not compatible with the official AWS' extended client which is putting a message with the following format:
S3Proxy Addon was designed from the beginning to be compatible, so I would consider it as a bug.
Another difference is with message attributes, but this is less important as the attribute is optional I think:
The text was updated successfully, but these errors were encountered: