Skip to content

Commit 54a76df

Browse files
committed
fix(base-partial): append record instead of entry
1 parent 4275fb2 commit 54a76df

File tree

1 file changed

+1
-1
lines changed
  • aws_lambda_powertools/utilities/batch

1 file changed

+1
-1
lines changed

aws_lambda_powertools/utilities/batch/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ def failure_handler(self, record, exception):
7272
Failure callback
7373
"""
7474
entry = ("fail", exception.args, record)
75-
self.fail_messages.append(entry)
75+
self.fail_messages.append(record)
7676
return entry

0 commit comments

Comments
 (0)