Skip to content

Commit 0979bcc

Browse files
committed
Fix
1 parent 5305616 commit 0979bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambdas/upsert-letter/src/handler/upsert-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export default function createUpsertLetterHandler(deps: Deps): SQSHandler {
161161

162162
const tasks = event.Records.map(async (record) => {
163163
try {
164-
const message: string = parseSNSNotification(record);
164+
const message: string = parseSNSNotification(record, deps);
165165

166166
const snsEvent = JSON.parse(message);
167167

0 commit comments

Comments
 (0)