Skip to content

Commit

Permalink
Merge pull request #128 from kddejong/fix/issue/126
Browse files Browse the repository at this point in the history
Increase timeout for update/create stack
  • Loading branch information
kddejong authored Feb 2, 2024
2 parents b987554 + 2e661d5 commit aec2526
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export async function updateStack(
core.debug('Waiting for CloudFormation Change Set creation')

await waitUntilChangeSetCreateComplete(
{ client: cfn, maxWaitTime: 30, minDelay: 10 },
{ client: cfn, maxWaitTime: 1800, minDelay: 10 },
{
ChangeSetName: params.ChangeSetName,
StackName: params.StackName
Expand Down Expand Up @@ -107,7 +107,7 @@ export async function updateStack(

core.debug('Updating CloudFormation stack')
await waitUntilStackUpdateComplete(
{ client: cfn, maxWaitTime: 30, minDelay: 10 },
{ client: cfn, maxWaitTime: 43200, minDelay: 10 },
{
StackName: params.StackName
}
Expand Down Expand Up @@ -168,7 +168,7 @@ export async function deployStack(
)

await waitUntilStackCreateComplete(
{ client: cfn, maxWaitTime: 30, minDelay: 10 },
{ client: cfn, maxWaitTime: 43200, minDelay: 10 },
{
StackName: params.StackName
}
Expand Down

0 comments on commit aec2526

Please sign in to comment.