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
This PR #4863 intrudoced a regression when working with Zero numbers. It's now returning NaN instead of a 0 Decimal.
NaN
Returning NaN when working with 0.
from aws_lambda_powertools.utilities.data_classes.dynamo_db_stream_event import ( DynamoDBStreamEvent, DynamoDBRecordEventName ) def lambda_handler(event, context): event: DynamoDBStreamEvent = DynamoDBStreamEvent(event) for record in event.records: print(record.dynamodb.new_image)
No response
Invoke a Lambda with DynamoDB Stream and try to access old image.
latest
3.12
PyPi
The text was updated successfully, but these errors were encountered:
This is now released under 2.43.1 version!
Sorry, something went wrong.
No branches or pull requests
Expected Behaviour
This PR #4863 intrudoced a regression when working with Zero numbers. It's now returning
NaN
instead of a 0 Decimal.Current Behaviour
Returning
NaN
when working with 0.Code snippet
Possible Solution
No response
Steps to Reproduce
Invoke a Lambda with DynamoDB Stream and try to access old image.
Powertools for AWS Lambda (Python) version
latest
AWS Lambda function runtime
3.12
Packaging format used
PyPi
Debugging logs
No response
The text was updated successfully, but these errors were encountered: