Skip to content

Commit

Permalink
Merge pull request #1318 from aligent/feature/DO-1610_address_timeout…
Browse files Browse the repository at this point in the history
…_error

Provide enough time to handle ten URLs in a chunk
  • Loading branch information
crispy101 authored Mar 18, 2024
2 parents b9e6f96 + b441761 commit 852082f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class PrerenderRecacheApi extends Construct {
existingProducerLambdaObj: apiHandler,
existingConsumerLambdaObj: new NodejsFunction(this, "consumer", {
reservedConcurrentExecutions: options.maxConcurrentExecutions,
timeout: Duration.seconds(60),
timeout: Duration.seconds(120),
}),
deployDeadLetterQueue: false,
queueProps: { visibilityTimeout: Duration.minutes(60) },
Expand Down

0 comments on commit 852082f

Please sign in to comment.