Skip to content

Commit

Permalink
fix: scale up lambda build issue. (#3388)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuptaNavdeep1983 authored Jul 25, 2023
1 parent 4a1554f commit e78232c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export async function scaleUp(eventSource: string, payload: ActionRequestMessage
if (eventSource !== 'aws:sqs') throw Error('Cannot handle non-SQS events!');
const enableOrgLevel = yn(process.env.ENABLE_ORGANIZATION_RUNNERS, { default: true });
const maximumRunners = parseInt(process.env.RUNNERS_MAXIMUM_COUNT || '3');
const runnerLabels = process.env.RUNNER_LABELS;
const runnerLabels = process.env.RUNNER_LABELS || '';
const runnerGroup = process.env.RUNNER_GROUP_NAME || 'Default';
const environment = process.env.ENVIRONMENT;
const ghesBaseUrl = process.env.GHES_URL;
Expand Down

0 comments on commit e78232c

Please sign in to comment.