We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9883b0b commit 43468a7Copy full SHA for 43468a7
lambdas/functions/control-plane/src/scale-runners/scale-up.ts
@@ -419,7 +419,6 @@ async function createRegistrationTokenConfig(
419
async function addGhRunnerIdToEC2InstanceTag(instanceId: string, runnerId: string): Promise<void> {
420
try {
421
await tag(instanceId, [{ Key: 'ghr:github_runner_id', Value: runnerId }]);
422
- logger.info(`Runner '${instanceId}' marked with ${runnerId}.`);
423
} catch (e) {
424
logger.error(`Failed to mark runner '${instanceId}' with ${runnerId}.`, { error: e });
425
}
0 commit comments