locking test improvements
parent
fa577923b1
commit
50e76b9b2f
|
@ -1612,7 +1612,7 @@ class AWSJobStack {
|
|||
if (cloud_runner_options_1.default.useCleanupCron) {
|
||||
try {
|
||||
cloud_runner_logger_1.default.log(`Creating job cleanup formation`);
|
||||
CF.createStack(createCleanupStackInput).promise();
|
||||
yield CF.createStack(createCleanupStackInput).promise();
|
||||
// await CF.waitFor('stackCreateComplete', { StackName: createCleanupStackInput.StackName }).promise();
|
||||
}
|
||||
catch (error) {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -180,7 +180,7 @@ export class AWSJobStack {
|
|||
if (CloudRunnerOptions.useCleanupCron) {
|
||||
try {
|
||||
CloudRunnerLogger.log(`Creating job cleanup formation`);
|
||||
CF.createStack(createCleanupStackInput).promise();
|
||||
await CF.createStack(createCleanupStackInput).promise();
|
||||
|
||||
// await CF.waitFor('stackCreateComplete', { StackName: createCleanupStackInput.StackName }).promise();
|
||||
} catch (error) {
|
||||
|
|
Loading…
Reference in New Issue