diff --git a/cdk/constructs/DpsStacItemGenerator/index.ts b/cdk/constructs/DpsStacItemGenerator/index.ts index f41fe1a..c5db5b0 100644 --- a/cdk/constructs/DpsStacItemGenerator/index.ts +++ b/cdk/constructs/DpsStacItemGenerator/index.ts @@ -162,7 +162,8 @@ export class DpsStacItemGenerator extends Construct { // Create main queue this.queue = new sqs.Queue(this, "Queue", { - visibilityTimeout: Duration.seconds(timeoutSeconds + 10), + deliveryDelay: Duration.minutes(1), + visibilityTimeout: Duration.minutes(5), encryption: sqs.QueueEncryption.SQS_MANAGED, deadLetterQueue: { maxReceiveCount: 5,