From e9931ceb4e31992207ec06388735e8b8a105dca7 Mon Sep 17 00:00:00 2001 From: anabellabuckvar <41971124+anabellabuckvar@users.noreply.github.com> Date: Mon, 15 Apr 2024 10:39:17 -0400 Subject: [PATCH] DOP-4504 fix displayrepooptions name --- cdk-infra/lib/constructs/api/webhook-api-construct.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdk-infra/lib/constructs/api/webhook-api-construct.ts b/cdk-infra/lib/constructs/api/webhook-api-construct.ts index 10862f6b8..f892f20ea 100644 --- a/cdk-infra/lib/constructs/api/webhook-api-construct.ts +++ b/cdk-infra/lib/constructs/api/webhook-api-construct.ts @@ -51,7 +51,7 @@ export class WebhookApiConstruct extends Construct { const slackDisplayRepoLambda = new NodejsFunction(this, 'slackDisplayRepoLambda', { entry: `${HANDLERS_PATH}/slack.ts`, runtime, - handler: 'DeployRepoDisplayRepoOptions', + handler: 'DisplayRepoOptions', environment, bundling, timeout,