Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: log error for stackUpdateComplete #13773

Merged
merged 12 commits into from
May 15, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -490,9 +490,18 @@ export class DeploymentManager {
assert(stackParams.stackName, 'stackName should be passed to waitForDeployment');

await cfnClient
.waitFor('stackUpdateComplete', {
StackName: stackParams.stackName,
})
.waitFor(
'stackUpdateComplete',
{
StackName: stackParams.stackName,
},
(err, data) => {
if (err) {
throw err;
0618 marked this conversation as resolved.
Show resolved Hide resolved
}
return data;
},
)
0618 marked this conversation as resolved.
Show resolved Hide resolved
.promise();
};

Expand Down
Loading