Log if stack already exists
parent
8343c06c71
commit
c64b2d1bdd
|
|
@ -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)}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -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)}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue