Skip to content

Commit 52078c9

Browse files
committed
Fix waiter call to use custom waiter for both CREATE and UPDATE
1 parent 7298422 commit 52078c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/deploy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ export async function updateStack(
262262
)
263263

264264
core.debug('Updating CloudFormation stack')
265-
await waitUntilStackUpdateComplete(
265+
await waitUntilStackOperationComplete(
266266
{ client: cfn, maxWaitTime: 43200, minDelay: 10 },
267267
{
268-
StackName: params.StackName
268+
StackName: params.StackName!
269269
}
270270
)
271271

0 commit comments

Comments
 (0)