Skip to content

Commit 47d26d7

Browse files
michaelbrewerJoris Conijn
and
Joris Conijn
authored
chore: Apply code review change
Co-authored-by: Joris Conijn <[email protected]>
1 parent 70c3e14 commit 47d26d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws_lambda_powertools/utilities/idempotency/idempotency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def _get_idempotency_record(self) -> DataRecord:
151151
152152
"""
153153
try:
154-
event_record = self.persistence_store.get_record(self.event, self.context)
154+
event_record = self.persistence_store.get_record(event=self.event, context=self.context)
155155
except IdempotencyItemNotFoundError:
156156
# This code path will only be triggered if the record is removed between save_inprogress and get_record.
157157
logger.debug(

0 commit comments

Comments
 (0)