Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aecorredor committed Nov 28, 2023
1 parent 4367973 commit a397da2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/kinesis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export class KinesisEventHandler<Event, Context> {
);

processingResult.throwOnUnprocessedRecords();
context.logger.info('Succesfully processed all Kinesis records');
context.logger.info('Successfully processed all Kinesis records');
});
}

Expand Down
2 changes: 1 addition & 1 deletion src/sqs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export class SQSMessageHandler<Message, Context> {
);

if (!processingResult.hasUnprocessedRecords) {
context.logger.info('Succesfully processed all SQS messages');
context.logger.info('Successfully processed all SQS messages');
}

if (!this.config.usePartialBatchResponses) {
Expand Down

0 comments on commit a397da2

Please sign in to comment.