Skip to content

Commit

Permalink
fix for classname changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensel committed Dec 5, 2023
1 parent 99adc38 commit 2d2593c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public FrequentS3PutStrategyBoundaryConstruct(@NotNull ManagedComponentContext c
Function transformEventFunction = Function.Builder.create(this, functionLabel.camelCase())
.functionName(functionName)
.code(Assets.find(Pattern.compile("^.*-aws-lambda-transform-.*\\.zip$"))) // get packaged code
.handler("clusterless.aws.lambda.boundary.frequents3put.FrequentPutEventTransformHandler") // get handler class name
.handler("clusterless.aws.lambda.boundary.frequents3put.FrequentPutEventBoundaryHandler") // get handler class name
.environment(environment)
.runtime(Functions.defaultJVM())
.memorySize(model().runtimeProps().memorySizeMB())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public InfrequentS3PutStrategyBoundaryConstruct(@NotNull ManagedComponentContext
Function transformEventFunction = Function.Builder.create(this, functionLabel.camelCase())
.functionName(functionName)
.code(Assets.find(Pattern.compile("^.*-aws-lambda-transform-.*\\.zip$"))) // get packaged code
.handler("clusterless.aws.lambda.boundary.s3put.PutEventTransformHandler") // get handler class name
.handler("clusterless.aws.lambda.boundary.s3put.PutEventBoundaryHandler") // get handler class name
.environment(environment)
.runtime(Functions.defaultJVM())
.memorySize(model().runtimeProps().memorySizeMB())
Expand Down

0 comments on commit 2d2593c

Please sign in to comment.