Skip to content

Commit

Permalink
Fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
patchwork01 committed Mar 13, 2024
1 parent eb9fd82 commit 377764d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ public GarbageCollectorStack(
.description("Creates batches of Sleeper tables to perform garbage collection for and puts them on a queue to be processed")
.runtime(Runtime.JAVA_11)
.handler("sleeper.garbagecollector.GarbageCollectorTriggerLambda::handleRequest")
.environment(Utils.createDefaultEnvironment(instanceProperties))
.memorySize(instanceProperties.getInt(TABLE_BATCHING_LAMBDAS_MEMORY_IN_MB))
.timeout(Duration.seconds(instanceProperties.getInt(TABLE_BATCHING_LAMBDAS_TIMEOUT_IN_SECONDS)))
.logGroup(createLambdaLogGroup(this, "GarbageCollectorTriggerLogGroup", triggerFunctionName, instanceProperties))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ public TableMetricsStack(
.description("Creates batches of Sleeper tables to calculate metrics for and puts them on a queue to be published")
.runtime(Runtime.JAVA_11)
.handler("sleeper.metrics.TableMetricsTriggerLambda::handleRequest")
.environment(Utils.createDefaultEnvironment(instanceProperties))
.memorySize(instanceProperties.getInt(TABLE_BATCHING_LAMBDAS_MEMORY_IN_MB))
.timeout(Duration.seconds(instanceProperties.getInt(TABLE_BATCHING_LAMBDAS_TIMEOUT_IN_SECONDS)))
.logGroup(createLambdaLogGroup(this, "MetricsTriggerLogGroup", triggerFunctionName, instanceProperties))
Expand Down

0 comments on commit 377764d

Please sign in to comment.