File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
lambdas/functions/control-plane/src/scale-runners Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,9 @@ async function getGitHubSelfHostedRunnerState(
8383async 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 } ` ) ;
You can’t perform that action at this time.
0 commit comments