Skip to content

Commit

Permalink
fix: increase queue visibility timeout (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasco-santos authored Mar 11, 2024
1 parent ee13380 commit 8755c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stacks/aggregator-stack.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export function AggregatorStack({ stack, app }) {
// messages that are sent with identical body content
contentBasedDeduplication: true,
queueName: `${bufferQueueName}.fifo`,
visibilityTimeout: Duration.minutes(2)
visibilityTimeout: Duration.minutes(5)
}
},
})
Expand Down Expand Up @@ -191,7 +191,7 @@ export function AggregatorStack({ stack, app }) {
aggregatorBufferStoreBucket,
aggregateOfferQueue
],
timeout: '2 minutes',
timeout: '5 minutes',
memorySize: '2 GB'
},
deadLetterQueue: bufferQueueDLQ.cdk.queue,
Expand Down

0 comments on commit 8755c27

Please sign in to comment.