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 e826fbe commit a5fcc88Copy full SHA for a5fcc88
lambdas/functions/control-plane/src/scale-runners/scale-down.ts
@@ -211,7 +211,7 @@ async function terminateOrphan(environment: string): Promise<void> {
211
for (const runner of orphanRunners) {
212
// do we have a valid runnerId? then we are in a Jit Runner scenario else, use old method
213
if (runner.runnerId) {
214
- logger.info(`Runner '${runner.instanceId}' is orphan, but has a runnerId.`);
+ logger.debug(`Runner '${runner.instanceId}' is orphan, but has a runnerId.`);
215
// build a runner instance
216
const client = await getOrCreateOctokit(runner as RunnerInfo);
217
const runnerId = parseInt(runner.runnerId);
0 commit comments