Log if stack already exists

pull/310/head
Frostebite 2021-11-06 20:33:05 +00:00
parent 8343c06c71
commit c64b2d1bdd
3 changed files with 3 additions and 1 deletions

1
dist/index.js vendored
View File

@ -949,6 +949,7 @@ class AWSJobStack {
const element = stacks.StackSummaries[index]; const element = stacks.StackSummaries[index];
if (element.StackName === taskDefStackName) { if (element.StackName === taskDefStackName) {
previousStackExists = true; previousStackExists = true;
cloud_runner_logger_1.default.log(`Previous stack still exists: ${JSON.stringify(element)}`);
} }
} }
} }

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -112,6 +112,7 @@ export class AWSJobStack {
const element = stacks.StackSummaries[index]; const element = stacks.StackSummaries[index];
if (element.StackName === taskDefStackName) { if (element.StackName === taskDefStackName) {
previousStackExists = true; previousStackExists = true;
CloudRunnerLogger.log(`Previous stack still exists: ${JSON.stringify(element)}`);
} }
} }
} }