We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7499c10 commit e28a09aCopy full SHA for e28a09a
1 file changed
packages/amplify-e2e-core/src/init/deleteProject.ts
@@ -19,8 +19,6 @@ export const deleteProject = async (
19
await retry(
20
() => describeCloudFormationStack(stackName, region, profileConfig),
21
(stack) => stack.StackStatus.endsWith('_COMPLETE') || stack.StackStatus.endsWith('_FAILED'),
22
- { timeoutMS: 1000 * 60 * 15 },
23
- (stack) => stack.StackStatus.includes('_IN_PROGRESS'), // Treat stuck in-progress states as failed
24
);
25
26
await spawn(getCLIPath(usingLatestCodebase), ['delete'], { cwd, stripColors: true, noOutputTimeout })
0 commit comments