Skip to content

Commit

Permalink
feat(cb2-14226): resolve promise
Browse files Browse the repository at this point in the history
  • Loading branch information
naathanbrown committed Oct 3, 2024
1 parent 9cd0c7b commit 3a563ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/functions/certGenInit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@ const certGenInit: Handler = async (
await sqService.sendCertGenMessage(stringifiedRecord);
}

console.log(`event ${record.dynamodb?.SequenceNumber} successfully processed`);
console.log(
`event ${record.dynamodb?.SequenceNumber} successfully processed`
);
} catch (err) {
console.error(err);
console.log("expandedRecords");
Expand Down
2 changes: 1 addition & 1 deletion src/services/SQService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
ReceiveMessageCommandOutput,
SQSClient,
SendMessageCommand,
SendMessageCommandInput
SendMessageCommandInput,
} from "@aws-sdk/client-sqs";

import { Service } from "../models/injector/ServiceDecorator";
Expand Down

0 comments on commit 3a563ba

Please sign in to comment.