Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit e78232c

Browse files
fix: scale up lambda build issue. (#3388)
1 parent 4a1554f commit e78232c

File tree

1 file changed

+1
-1
lines changed
  • lambdas/functions/control-plane/src/scale-runners

1 file changed

+1
-1
lines changed

Diff for: lambdas/functions/control-plane/src/scale-runners/scale-up.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export async function scaleUp(eventSource: string, payload: ActionRequestMessage
212212
if (eventSource !== 'aws:sqs') throw Error('Cannot handle non-SQS events!');
213213
const enableOrgLevel = yn(process.env.ENABLE_ORGANIZATION_RUNNERS, { default: true });
214214
const maximumRunners = parseInt(process.env.RUNNERS_MAXIMUM_COUNT || '3');
215-
const runnerLabels = process.env.RUNNER_LABELS;
215+
const runnerLabels = process.env.RUNNER_LABELS || '';
216216
const runnerGroup = process.env.RUNNER_GROUP_NAME || 'Default';
217217
const environment = process.env.ENVIRONMENT;
218218
const ghesBaseUrl = process.env.GHES_URL;

0 commit comments

Comments
 (0)