From 7b49b61ff06f8c018bf0dbd23148bcbb2383aae6 Mon Sep 17 00:00:00 2001 From: Addie Rudy Date: Thu, 25 Jul 2024 14:17:50 -0400 Subject: [PATCH] fix(cdk): typo in lambda function handler path --- .../rss-atom-ingestion/data-feed-poll-step-function.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data-feed-ingestion/rss-atom-ingestion/data-feed-poll-step-function.ts b/lib/data-feed-ingestion/rss-atom-ingestion/data-feed-poll-step-function.ts index a0e024d..95d6a57 100644 --- a/lib/data-feed-ingestion/rss-atom-ingestion/data-feed-poll-step-function.ts +++ b/lib/data-feed-ingestion/rss-atom-ingestion/data-feed-poll-step-function.ts @@ -58,7 +58,7 @@ export class DataFeedPollStepFunction extends Construct { description: 'Function responsible for getting all enabled data feeds to poll', handler: 'handler', - entry: path.join(__dirname, 'data-feed-pool-step-function.get-data-feeds.ts'), + entry: path.join(__dirname, 'data-feed-poll-step-function.get-data-feeds.ts'), architecture: Architecture.ARM_64, runtime: Runtime.NODEJS_20_X, tracing: Tracing.ACTIVE,