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
we are trying to introduce this feature in our main source code but when running tests with jest-dynalite,
jest-dynalite
const params = { Statements: oAuthIds.slice(0, batchSize).map((id) => { return { Statement: "UPDATE " + process.env.OAUTH_TOKENS_TABLE_NAME + " SET rateLimit=? where tokenValue=?", Parameters: [{ N: rateLimit.toString() }, { S: id.toString() }], }; }), }; await getDynamoDBClient().send(new BatchExecuteStatementCommand(params));
It is giving us a UnknownOperationException: UnknownError with a 400.
Is there such feature with dynalite ? is there any prevision to introduce it ?
dynalite
The text was updated successfully, but these errors were encountered:
No branches or pull requests
we are trying to introduce this feature in our main source code but when running tests with
jest-dynalite
,It is giving us a UnknownOperationException: UnknownError with a 400.
Is there such feature with
dynalite
? is there any prevision to introduce it ?The text was updated successfully, but these errors were encountered: