Skip to content

Commit 3fe2e86

Browse files
authored
Merge pull request #308 from overmindtech/fix/message-size-breach-5
fix: increase SQS visibility timeout to 6x Lambda timeout for AWS com…
2 parents cab3a68 + f575a64 commit 3fe2e86

File tree

1 file changed

+1
-1
lines changed
  • modules/scenarios/message-size-breach

1 file changed

+1
-1
lines changed

modules/scenarios/message-size-breach/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resource "aws_sqs_queue" "image_processing_queue" {
1010

1111
# Standard queue configuration
1212
message_retention_seconds = 1209600 # 14 days
13-
visibility_timeout_seconds = 30
13+
visibility_timeout_seconds = 1080 # 18 minutes (6x Lambda timeout of 180 seconds)
1414
receive_wait_time_seconds = 20 # Long polling
1515

1616
# Dead letter queue for failed messages

0 commit comments

Comments
 (0)