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 a245b2b commit 6dca64fCopy full SHA for 6dca64f
lambdas/functions/control-plane/src/scale-runners/scale-down.ts
@@ -226,7 +226,7 @@ async function lastChanceCheckOrphanRunner(runner: RunnerList): Promise<boolean>
226
const runnerId = parseInt(runner.runnerId || '0');
227
const ec2Instance = runner as RunnerInfo;
228
const state = await getGitHubSelfHostedRunnerState(client, ec2Instance, runnerId);
229
- var isOrphan = false;
+ let isOrphan = false;
230
logger.debug(
231
`Runner '${runner.instanceId}' is '${state.status}' and is currently '${state.busy ? 'busy' : 'idle'}'.`,
232
);
0 commit comments