Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit f148fa9

Browse files
committed
Adjust FIXME and add to README
1 parent df87b00 commit f148fa9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,8 @@ Use optimistic locking to put DynamoDB records with auto-incrementing attributes
66

77
- https://aws.amazon.com/blogs/aws/new-amazon-dynamodb-transactions/
88
- https://bitesizedserverless.com/bite/reliable-auto-increments-in-dynamodb/
9+
10+
## FIXME
11+
12+
This package currently depends on code that is in a pull request for boto3 that is not yet merged or released.
13+
See https://github.com/boto/boto3/pull/4010.

dynamodb_autoincrement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def put(self, item: DynamoDBItem):
5555
self._put_item(**put)
5656
else:
5757
try:
58-
# FIXME: depends on unreleased code in boto3.
58+
# FIXME: depends on an unmerged PR for boto3.
5959
# See https://github.com/boto/boto3/pull/4010
6060
self.dynamodb.transact_write_items( # type: ignore[attr-defined]
6161
TransactItems=[{"Put": put} for put in puts]

0 commit comments

Comments
 (0)