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 1baf4af commit c2b1033Copy full SHA for c2b1033
lambdas/functions/control-plane/src/scale-runners/scale-down.ts
@@ -234,7 +234,7 @@ async function lastChanceCheckOrphanRunner(runner: RunnerList): Promise<boolean>
234
if (isOfflineAndBusy) {
235
isOrphan = true;
236
}
237
- logger.info(`Runner is judged to '${runner.instanceId}' ${isOrphan ? 'be' : 'not be'} orphaned.`);
+ logger.info(`Runner '${runner.instanceId}' is judged to ${isOrphan ? 'be' : 'not be'} orphaned.`);
238
return isOrphan;
239
240
0 commit comments