Skip to content

Commit f2a3e2b

Browse files
fix: handlers were pointing the wrong way around
1 parent 6c57307 commit f2a3e2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cdk/resources/Functions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class Functions extends Construct {
5656
stackName: props.stackName,
5757
functionName: `${props.stackName}-SlackBotFunction`,
5858
packageBasePath: "packages/slackBotFunction",
59-
handler: "app.handler.handler",
59+
handler: "app.main.handler",
6060
logRetentionInDays: props.logRetentionInDays,
6161
logLevel: props.logLevel,
6262
additionalPolicies: [props.slackBotManagedPolicy],
@@ -82,7 +82,7 @@ export class Functions extends Construct {
8282
stackName: props.stackName,
8383
functionName: `${props.stackName}-SyncKnowledgeBaseFunction`,
8484
packageBasePath: "packages/syncKnowledgeBaseFunction",
85-
handler: "app.main.handler",
85+
handler: "app.handler.handler",
8686
logRetentionInDays: props.logRetentionInDays,
8787
logLevel: props.logLevel,
8888
environmentVariables: {

0 commit comments

Comments
 (0)