Skip to content

Commit

Permalink
Specify scale-config file used when logging failures (#5791)
Browse files Browse the repository at this point in the history
To help with debugging
  • Loading branch information
ZainRizvi authored Oct 21, 2024
1 parent b8eecfb commit 82093fe
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ export async function scaleUp(
for (const runnerLabel of runnerLabels) {
const runnerType = runnerTypes.get(runnerLabel);
if (runnerType === undefined) {
console.info(`Runner label '${runnerLabel}' was not found in config for ` + `${repo.owner}/${repo.repo}`);
console.info(
`Runner label '${runnerLabel}' was not found in config at ` +
`${repo.owner}/${repo.repo}/${Config.Instance.scaleConfigRepoPath}`,
);
continue;
}
const runnersToCreate = await allRunnersBusy(
Expand Down

0 comments on commit 82093fe

Please sign in to comment.