We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5fcc88 commit bb8ba2bCopy full SHA for bb8ba2b
1 file changed
lambdas/functions/control-plane/src/scale-runners/scale-down.ts
@@ -217,7 +217,7 @@ async function terminateOrphan(environment: string): Promise<void> {
217
const runnerId = parseInt(runner.runnerId);
218
const ec2Instance = runner as RunnerInfo;
219
const state = await getGitHubSelfHostedRunnerState(client, ec2Instance, runnerId);
220
- logger.info(`Runner is currently '${runner.instanceId}' state: ${JSON.stringify(state)}`);
+ logger.debug(`Runner is currently '${runner.instanceId}' state: ${JSON.stringify(state)}`);
221
if (state.status === 'online' && state.busy) {
222
logger.info(`Runner '${runner.instanceId}' is orphan, but is online and busy.`);
223
await untag(runner.instanceId, [{ Key: 'ghr:orphan', Value: 'true' }]);
0 commit comments