Skip to content

Commit

Permalink
fix: updated queue timeout to match lambda (#5991)
Browse files Browse the repository at this point in the history
  • Loading branch information
bashleigh authored Jan 27, 2022
1 parent f1a27bc commit 3ce5b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/deployment-service/cdk/lib/create-sqs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const createSqsQueues = (stack: Stack): Record<QueueNames, Queue> => {
visibilityTimeout: 300,
},
[QueueNames.PIPELINE_SETUP]: {
visibilityTimeout: 300,
visibilityTimeout: 900,
},
[QueueNames.PIPELINE_TEAR_DOWN_START]: {
visibilityTimeout: 300,
Expand Down

0 comments on commit 3ce5b2b

Please sign in to comment.