Skip to content

Commit d3356d6

Browse files
committed
fmt
1 parent 0df4021 commit d3356d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lambdas/functions/control-plane/src/scale-runners/scale-down.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ async function getGitHubSelfHostedRunnerState(
8383
async function getGitHubRunnerBusyState(client: Octokit, ec2runner: RunnerInfo, runnerId: number): Promise<boolean> {
8484
const state = await getGitHubSelfHostedRunnerState(client, ec2runner, runnerId);
8585
if (state === null) {
86-
logger.info(`Runner '${ec2runner.instanceId}' - GitHub Runner ID '${runnerId}' - Not found on GitHub, treating as not busy`);
86+
logger.info(
87+
`Runner '${ec2runner.instanceId}' - GitHub Runner ID '${runnerId}' - Not found on GitHub, treating as not busy`,
88+
);
8789
return false;
8890
}
8991
logger.info(`Runner '${ec2runner.instanceId}' - GitHub Runner ID '${runnerId}' - Busy: ${state.busy}`);

0 commit comments

Comments
 (0)