Skip to content

Commit

Permalink
fix: increase memory size of PB export/import functions to 512
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jan 25, 2024
1 parent f30522c commit 6232cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/pulumi-aws/src/apps/api/ApiPageBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function createExportResources(app: PulumiApp, params: PageBuilderParams) {
runtime: LAMBDA_RUNTIME,
handler: "handler.handler",
timeout: 60,
memorySize: 128,
memorySize: 512,
description: "Handle export's combine workflow",
code: new pulumi.asset.AssetArchive({
".": new pulumi.asset.FileArchive(
Expand All @@ -82,7 +82,7 @@ function createExportResources(app: PulumiApp, params: PageBuilderParams) {
runtime: LAMBDA_RUNTIME,
handler: "handler.handler",
timeout: 60,
memorySize: 128,
memorySize: 512,
description: "Handle export's process workflow",
code: new pulumi.asset.AssetArchive({
".": new pulumi.asset.FileArchive(
Expand Down

0 comments on commit 6232cb1

Please sign in to comment.