We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96545be commit 6af4656Copy full SHA for 6af4656
1 file changed
modules/runners/lambdas/scale-runners/src/scale-runners/runners.ts
@@ -87,12 +87,7 @@ export async function createRunner(runnerParameters: RunnerInputParameters): Pro
87
],
88
})
89
.promise();
90
- console.info(
91
- 'Created instance(s): ',
92
- runInstancesResponse.Instances?.forEach((i: EC2.Instance) => {
93
- i.InstanceId;
94
- }),
95
- );
+ console.info('Created instance(s): ', runInstancesResponse.Instances?.map((i) => i.InstanceId).join(','));
96
97
const ssm = new SSM();
98
runInstancesResponse.Instances?.forEach(async (i: EC2.Instance) => {
0 commit comments