File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -160417,7 +160417,8 @@ async function startEc2Instance(label, githubRegistrationToken) {
160417160417
160418160418 const runInstancesCommand = new RunInstancesCommand(params);
160419160419
160420- ec2.send(runInstancesCommand, (err, data) => {
160420+ console.log("beforesend")
160421+ await ec2.send(runInstancesCommand, (err, data) => {
160421160422 if (err) {
160422160423 console.log(err, err.stack);
160423160424 core.error(`AWS EC2 instance failed to start - error: ${err}`)
@@ -160428,6 +160429,7 @@ async function startEc2Instance(label, githubRegistrationToken) {
160428160429 return ec2InstanceIds;
160429160430 }
160430160431 });
160432+ console.log("aftersend")
160431160433}
160432160434
160433160435async function terminateEc2Instance() {
You can’t perform that action at this time.
0 commit comments