Skip to content

Commit

Permalink
Fix visibility timeout (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw authored Dec 2, 2024
1 parent 39650fa commit 4d4a309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cdk/quiz_app/quiz_app_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
dead_letter_queue=sqs.DeadLetterQueue(
max_receive_count=1, queue=dlq_submission_queue
),
visibility_timeout=aws_cdk.Duration.seconds(10),
visibility_timeout=aws_cdk.Duration.minutes(1),
)
functions_and_roles = [
(
Expand Down

0 comments on commit 4d4a309

Please sign in to comment.