Skip to content

Commit b09382b

Browse files
committed
Fix visibility timeout
1 parent 39650fa commit b09382b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cdk/quiz_app/quiz_app_stack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
6969
dead_letter_queue=sqs.DeadLetterQueue(
7070
max_receive_count=1, queue=dlq_submission_queue
7171
),
72-
visibility_timeout=aws_cdk.Duration.seconds(10),
72+
visibility_timeout=aws_cdk.Duration.minutes(1),
7373
)
7474
functions_and_roles = [
7575
(

0 commit comments

Comments
 (0)