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
Describe the bug DynamoDB reader for laconia batch is using documentClient, but the params is passed is as dynamoDbParams.
dynamoDbParams
To Reproduce Create a reader with dynamoDb params ExpressionAttributeValues format:
ExpressionAttributeValues
dynamoDb({ operation: "QUERY", dynamoDbParams: { TableName: "Music", Limit: 1, ExpressionAttributeValues: { ":a": { "S": "Bar" } }, } });
Expected behavior dynamoDbParams must be renamed to documentClientParams
ExpressionAttributeValues: { ":a": "Bar" },
Actual behavior The reader would break because of the following code:
ExpressionAttributeValues: { ":a": { "S": "Bar" } },
Additional context
This is a breaking change. Deprecate dynamoDbParams instead or removing them.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
DynamoDB reader for laconia batch is using documentClient, but the params is passed is as
dynamoDbParams
.To Reproduce
Create a reader with dynamoDb params
ExpressionAttributeValues
format:Expected behavior
dynamoDbParams must be renamed to documentClientParams
Actual behavior
The reader would break because of the following code:
Additional context
This is a breaking change. Deprecate dynamoDbParams instead or removing them.
The text was updated successfully, but these errors were encountered: