Skip to content

Commit 1ca74d3

Browse files
authored
fix(batch): missing space in BatchProcessingError message (aws-powertools#1201)
1 parent 666d21c commit 1ca74d3

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def _clean(self):
380380

381381
if self._entire_batch_failed():
382382
raise BatchProcessingError(
383-
msg=f"All records failed processing. {len(self.exceptions)} individual errors logged"
383+
msg=f"All records failed processing. {len(self.exceptions)} individual errors logged "
384384
f"separately below.",
385385
child_exceptions=self.exceptions,
386386
)

0 commit comments

Comments
 (0)